Lines Matching refs:Tmp
658 APInt tmp(sufficient, StringRef(p, slen), radix);
662 unsigned log = tmp.logBase2();
883 char Tmp = pByte[i];
885 pByte[BitWidth / APINT_WORD_SIZE - i - 1] = Tmp;
933 APInt Tmp(width, mantissa);
934 Tmp = Tmp.shl((unsigned)exp - 52);
935 return isNeg ? -Tmp : Tmp;
961 APInt Tmp(isNeg ? -(*this) : (*this));
964 unsigned n = Tmp.getActiveBits();
985 mantissa = Tmp.pVal[0];
990 uint64_t hibits = Tmp.pVal[hiWord] << (52 - n % APINT_BITS_PER_WORD);
991 uint64_t lobits = Tmp.pVal[hiWord-1] >> (11 + n % APINT_BITS_PER_WORD);
1798 uint64_t tmp = (LHS.getNumWords() == 1 ? LHS.VAL : LHS.pVal[i]);
1799 U[i * 2] = (unsigned)(tmp & mask);
1800 U[i * 2 + 1] = (unsigned)(tmp >> (sizeof(unsigned)*CHAR_BIT));
1807 uint64_t tmp = (RHS.getNumWords() == 1 ? RHS.VAL : RHS.pVal[i]);
1808 V[i * 2] = (unsigned)(tmp & mask);
1809 V[i * 2 + 1] = (unsigned)(tmp >> (sizeof(unsigned)*CHAR_BIT));
1879 uint64_t tmp =
1882 Quotient->VAL = tmp;
1884 Quotient->pVal[0] = tmp;
1910 uint64_t tmp =
1913 Remainder->VAL = tmp;
1915 Remainder->pVal[0] = tmp;
2238 APInt Tmp(*this);
2244 Tmp.flipAllBits();
2245 Tmp++;
2261 // Just shift tmp right for each digit width until it becomes zero
2265 while (Tmp != 0) {
2266 unsigned Digit = unsigned(Tmp.getRawData()[0]) & MaskAmt;
2268 Tmp = Tmp.lshr(ShiftAmt);
2272 while (Tmp != 0) {
2274 APInt tmp2(Tmp.getBitWidth(), 0);
2275 divide(Tmp, Tmp.getNumWords(), divisor, divisor.getNumWords(), &tmp2,
2280 Tmp = tmp2;