Home | History | Annotate | Download | only in Support

Lines Matching refs:Tmp

666   APInt tmp(sufficient, StringRef(p, slen), radix);
670 unsigned log = tmp.logBase2();
891 char Tmp = pByte[i];
893 pByte[BitWidth / APINT_WORD_SIZE - i - 1] = Tmp;
941 APInt Tmp(width, mantissa);
942 Tmp = Tmp.shl((unsigned)exp - 52);
943 return isNeg ? -Tmp : Tmp;
969 APInt Tmp(isNeg ? -(*this) : (*this));
972 unsigned n = Tmp.getActiveBits();
993 mantissa = Tmp.pVal[0];
998 uint64_t hibits = Tmp.pVal[hiWord] << (52 - n % APINT_BITS_PER_WORD);
999 uint64_t lobits = Tmp.pVal[hiWord-1] >> (11 + n % APINT_BITS_PER_WORD);
1806 uint64_t tmp = (LHS.getNumWords() == 1 ? LHS.VAL : LHS.pVal[i]);
1807 U[i * 2] = (unsigned)(tmp & mask);
1808 U[i * 2 + 1] = (unsigned)(tmp >> (sizeof(unsigned)*CHAR_BIT));
1815 uint64_t tmp = (RHS.getNumWords() == 1 ? RHS.VAL : RHS.pVal[i]);
1816 V[i * 2] = (unsigned)(tmp & mask);
1817 V[i * 2 + 1] = (unsigned)(tmp >> (sizeof(unsigned)*CHAR_BIT));
1887 uint64_t tmp =
1890 Quotient->VAL = tmp;
1892 Quotient->pVal[0] = tmp;
1918 uint64_t tmp =
1921 Remainder->VAL = tmp;
1923 Remainder->pVal[0] = tmp;
2248 APInt Tmp(*this);
2254 Tmp.flipAllBits();
2255 Tmp++;
2271 // Just shift tmp right for each digit width until it becomes zero
2275 while (Tmp != 0) {
2276 unsigned Digit = unsigned(Tmp.getRawData()[0]) & MaskAmt;
2278 Tmp = Tmp.lshr(ShiftAmt);
2282 while (Tmp != 0) {
2284 APInt tmp2(Tmp.getBitWidth(), 0);
2285 divide(Tmp, Tmp.getNumWords(), divisor, divisor.getNumWords(), &tmp2,
2290 Tmp = tmp2;