Lines Matching refs:Tmp
772 uint64_t Tmp = Src[I]; in lshrNear() local
773 Dst[I] = (Tmp >> Shift) | Carry; in lshrNear()
774 Carry = Tmp << (64 - Shift); in lshrNear()
847 APInt Tmp(width, mantissa); in RoundDoubleToAPInt() local
848 Tmp = Tmp.shl((unsigned)exp - 52); in RoundDoubleToAPInt()
849 return isNeg ? -Tmp : Tmp; in RoundDoubleToAPInt()
875 APInt Tmp(isNeg ? -(*this) : (*this)); in roundToDouble() local
878 unsigned n = Tmp.getActiveBits(); in roundToDouble()
899 mantissa = Tmp.pVal[0]; in roundToDouble()
904 uint64_t hibits = Tmp.pVal[hiWord] << (52 - n % APINT_BITS_PER_WORD); in roundToDouble()
905 uint64_t lobits = Tmp.pVal[hiWord-1] >> (11 + n % APINT_BITS_PER_WORD); in roundToDouble()
2194 APInt Tmp(*this); in toString() local
2200 Tmp.flipAllBits(); in toString()
2201 ++Tmp; in toString()
2221 while (Tmp != 0) { in toString()
2222 unsigned Digit = unsigned(Tmp.getRawData()[0]) & MaskAmt; in toString()
2224 Tmp = Tmp.lshr(ShiftAmt); in toString()
2228 while (Tmp != 0) { in toString()
2230 APInt tmp2(Tmp.getBitWidth(), 0); in toString()
2231 divide(Tmp, Tmp.getNumWords(), divisor, divisor.getNumWords(), &tmp2, in toString()
2236 Tmp = tmp2; in toString()