Home | History | Annotate | Download | only in AsmParser

Lines Matching refs:Tmp

152         char Tmp = BIn[3]; BIn[3] = 0;      // Terminate string
154 BIn[3] = Tmp; // Restore character
648 APInt Tmp(bits, StringRef(TokStart+3, len), 16);
649 uint32_t activeBits = Tmp.getActiveBits();
651 Tmp = Tmp.trunc(activeBits);
652 APSIntVal = APSInt(Tmp, TokStart[0] == 'u');
766 APInt Tmp(numBits, StringRef(TokStart, Len), 10);
768 uint32_t minBits = Tmp.getMinSignedBits();
770 Tmp = Tmp.trunc(minBits);
771 APSIntVal = APSInt(Tmp, false);
773 uint32_t activeBits = Tmp.getActiveBits();
775 Tmp = Tmp.trunc(activeBits);
776 APSIntVal = APSInt(Tmp, true);