Lines Matching refs:APSInt

34   APSInt NewVal = Val;  in convert()
74 APSInt ThisVal = getValue(); in compare()
75 APSInt OtherVal = Other.getValue(); in compare()
121 auto Val = APSInt::getMaxValue(Sema.getWidth(), IsUnsigned); in getMax()
128 auto Val = APSInt::getMinValue(Sema.getWidth(), !Sema.isSigned()); in getMin()
133 APSInt Val(Sema.getWidth(), !Sema.isSigned()); in getEpsilon()
148 APSInt MaxInt = APFixedPoint::getMax(*this).getValue(); in fitsInFloatSemantics()
155 APSInt MinInt = APFixedPoint::getMin(*this).getValue(); in fitsInFloatSemantics()
192 APSInt ThisVal = ConvertedThis.getValue(); in add()
193 APSInt OtherVal = ConvertedOther.getValue(); in add()
196 APSInt Result; in add()
216 APSInt ThisVal = ConvertedThis.getValue(); in sub()
217 APSInt OtherVal = ConvertedOther.getValue(); in sub()
220 APSInt Result; in sub()
240 APSInt ThisVal = ConvertedThis.getValue(); in mul()
241 APSInt OtherVal = ConvertedOther.getValue(); in mul()
261 APSInt Result; in mul()
273 APSInt Max = APFixedPoint::getMax(CommonFXSema).getValue() in mul()
275 APSInt Min = APFixedPoint::getMin(CommonFXSema).getValue() in mul()
297 APSInt ThisVal = ConvertedThis.getValue(); in div()
298 APSInt OtherVal = ConvertedOther.getValue(); in div()
320 APSInt Result; in div()
334 APSInt Max = APFixedPoint::getMax(CommonFXSema).getValue() in div()
336 APSInt Min = APFixedPoint::getMin(CommonFXSema).getValue() in div()
354 APSInt ThisVal = Val; in shl()
366 APSInt Result = ThisVal << Amt; in shl()
371 APSInt Max = APFixedPoint::getMax(Sema).getValue().extOrTrunc(Wide); in shl()
372 APSInt Min = APFixedPoint::getMin(Sema).getValue().extOrTrunc(Wide); in shl()
388 APSInt Val = getValue(); in toString()
393 APSInt IntPart = Val; in toString()
409 APSInt IntPart = (OrigWidth > Scale) ? (Val >> Scale) : APSInt::get(0); in toString()
452 APSInt APFixedPoint::convertToInt(unsigned DstWidth, bool DstSign, in convertToInt()
454 APSInt Result = getIntPart(); in convertToInt()
457 APSInt DstMin = APSInt::getMinValue(DstWidth, !DstSign); in convertToInt()
458 APSInt DstMax = APSInt::getMaxValue(DstWidth, !DstSign); in convertToInt()
529 APFixedPoint APFixedPoint::getFromIntValue(const APSInt &Value, in getFromIntValue()
579 APSInt Res(DstFXSema.getWidth(), !DstFXSema.isSigned()); in getFromFloatValue()