Home | History | Annotate | Download | only in AsmParser

Lines Matching refs:Tmp

694     APInt Tmp(bits, StringRef(TokStart+3, len), 16);
695 uint32_t activeBits = Tmp.getActiveBits();
697 Tmp = Tmp.trunc(activeBits);
698 APSIntVal = APSInt(Tmp, TokStart[0] == 'u');
818 APInt Tmp(numBits, StringRef(TokStart, Len), 10);
820 uint32_t minBits = Tmp.getMinSignedBits();
822 Tmp = Tmp.trunc(minBits);
823 APSIntVal = APSInt(Tmp, false);
825 uint32_t activeBits = Tmp.getActiveBits();
827 Tmp = Tmp.trunc(activeBits);
828 APSIntVal = APSInt(Tmp, true);