Lines Matching refs:VAL

95     U.VAL = bigVal[0];  in initFromArray()
153 U.VAL = RHS.U.VAL; in AssignSlowCase()
163 ID.AddInteger(U.VAL); in Profile()
175 ++U.VAL; in operator ++()
184 --U.VAL; in operator --()
196 U.VAL += RHS.U.VAL; in operator +=()
204 U.VAL += RHS; in operator +=()
216 U.VAL -= RHS.U.VAL; in operator -=()
224 U.VAL -= RHS; in operator -=()
233 return APInt(BitWidth, U.VAL * RHS.U.VAL); in operator *()
263 U.VAL *= RHS; in operator *=()
278 return U.VAL < RHS.U.VAL ? -1 : U.VAL > RHS.U.VAL; in compare()
286 int64_t lhsSext = SignExtend64(U.VAL, BitWidth); in compareSigned()
287 int64_t rhsSext = SignExtend64(RHS.U.VAL, BitWidth); in compareSigned()
358 U.VAL &= ~(mask << bitPosition); in insertBits()
359 U.VAL |= (subBits.U.VAL << bitPosition); in insertBits()
371 U.pVal[loWord] |= (subBits.U.VAL << loBit); in insertBits()
403 U.VAL &= ~(maskBits << bitPosition); in insertBits()
404 U.VAL |= subBits << bitPosition; in insertBits()
432 return APInt(numBits, U.VAL >> bitPosition); in extractBits()
452 uint64_t *DestPtr = Result.isSingleWord() ? &Result.U.VAL : Result.U.pVal; in extractBits()
472 return (U.VAL >> bitPosition) & maskBits; in extractBitsAsZExtValue()
546 return hash_combine(Arg.BitWidth, Arg.U.VAL); in hash_value()
676 return APInt(BitWidth, ByteSwap_16(uint16_t(U.VAL))); in byteSwap()
678 return APInt(BitWidth, ByteSwap_32(unsigned(U.VAL))); in byteSwap()
680 uint64_t Tmp1 = ByteSwap_64(U.VAL); in byteSwap()
698 return APInt(BitWidth, llvm::reverseBits<uint64_t>(U.VAL)); in reverseBits()
700 return APInt(BitWidth, llvm::reverseBits<uint32_t>(U.VAL)); in reverseBits()
702 return APInt(BitWidth, llvm::reverseBits<uint16_t>(U.VAL)); in reverseBits()
704 return APInt(BitWidth, llvm::reverseBits<uint8_t>(U.VAL)); in reverseBits()
914 return APInt(Width, SignExtend64(U.VAL, BitWidth)); in sext()
938 return APInt(width, U.VAL); in zext()
1119 return APInt(BitWidth, results[ (isSingleWord() ? U.VAL : U.pVal[0]) ]); in sqrt()
1128 uint64_t(::round(::sqrt(double(isSingleWord() ? U.VAL in sqrt()
1609 assert(RHS.U.VAL != 0 && "Divide by zero?"); in udiv()
1610 return APInt(BitWidth, U.VAL / RHS.U.VAL); in udiv()
1647 return APInt(BitWidth, U.VAL / RHS); in udiv()
1700 assert(RHS.U.VAL != 0 && "Remainder by zero?"); in urem()
1701 return APInt(BitWidth, U.VAL % RHS.U.VAL); in urem()
1739 return U.VAL % RHS; in urem()
1796 assert(RHS.U.VAL != 0 && "Divide by zero?"); in udivrem()
1797 uint64_t QuotVal = LHS.U.VAL / RHS.U.VAL; in udivrem()
1798 uint64_t RemVal = LHS.U.VAL % RHS.U.VAL; in udivrem()
1867 uint64_t QuotVal = LHS.U.VAL / RHS; in udivrem()
1868 Remainder = LHS.U.VAL % RHS; in udivrem()
2143 U.VAL = 0; in fromString()