Home | History | Annotate | Download | only in Support

Lines Matching refs:Tmp

651   APInt tmp(sufficient, StringRef(p, slen), radix);
655 unsigned log = tmp.logBase2();
771 uint64_t Tmp = Src[I];
772 Dst[I] = (Tmp >> Shift) | Carry;
773 Carry = Tmp << (64 - Shift);
846 APInt Tmp(width, mantissa);
847 Tmp = Tmp.shl((unsigned)exp - 52);
848 return isNeg ? -Tmp : Tmp;
874 APInt Tmp(isNeg ? -(*this) : (*this));
877 unsigned n = Tmp.getActiveBits();
898 mantissa = Tmp.pVal[0];
903 uint64_t hibits = Tmp.pVal[hiWord] << (52 - n % APINT_BITS_PER_WORD);
904 uint64_t lobits = Tmp.pVal[hiWord-1] >> (11 + n % APINT_BITS_PER_WORD);
1707 uint64_t tmp = (LHS.getNumWords() == 1 ? LHS.VAL : LHS.pVal[i]);
1708 U[i * 2] = (unsigned)(tmp & mask);
1709 U[i * 2 + 1] = (unsigned)(tmp >> (sizeof(unsigned)*CHAR_BIT));
1716 uint64_t tmp = (RHS.getNumWords() == 1 ? RHS.VAL : RHS.pVal[i]);
1717 V[i * 2] = (unsigned)(tmp & mask);
1718 V[i * 2 + 1] = (unsigned)(tmp >> (sizeof(unsigned)*CHAR_BIT));
1788 uint64_t tmp =
1791 Quotient->VAL = tmp;
1793 Quotient->pVal[0] = tmp;
1819 uint64_t tmp =
1822 Remainder->VAL = tmp;
1824 Remainder->pVal[0] = tmp;
2193 APInt Tmp(*this);
2199 Tmp.flipAllBits();
2200 Tmp++;
2216 // Just shift tmp right for each digit width until it becomes zero
2220 while (Tmp != 0) {
2221 unsigned Digit = unsigned(Tmp.getRawData()[0]) & MaskAmt;
2223 Tmp = Tmp.lshr(ShiftAmt);
2227 while (Tmp != 0) {
2229 APInt tmp2(Tmp.getBitWidth(), 0);
2230 divide(Tmp, Tmp.getNumWords(), divisor, divisor.getNumWords(), &tmp2,
2235 Tmp = tmp2;