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
670 APInt Tmp(bits, StringRef(TokStart+3, len), 16);
671 uint32_t activeBits = Tmp.getActiveBits();
673 Tmp = Tmp.trunc(activeBits);
674 APSIntVal = APSInt(Tmp, TokStart[0] == 'u');
788 APInt Tmp(numBits, StringRef(TokStart, Len), 10);
790 uint32_t minBits = Tmp.getMinSignedBits();
792 Tmp = Tmp.trunc(minBits);
793 APSIntVal = APSInt(Tmp, false);
795 uint32_t activeBits = Tmp.getActiveBits();
797 Tmp = Tmp.trunc(activeBits);
798 APSIntVal = APSInt(Tmp, true);