Home | History | Annotate | Download | only in Support

Lines Matching refs:bitWidth

2214   unsigned bitWidth = result.getBitWidth();
2217 parts.data(), bitWidth, result.isSigned(), rounding_mode, isExact);
2219 result = APInt(bitWidth, parts);
3340 APFloat::getAllOnesValue(unsigned BitWidth, bool isIEEE)
3342 switch (BitWidth) {
3344 return APFloat(IEEEhalf, APInt::getAllOnesValue(BitWidth));
3346 return APFloat(IEEEsingle, APInt::getAllOnesValue(BitWidth));
3348 return APFloat(IEEEdouble, APInt::getAllOnesValue(BitWidth));
3350 return APFloat(x87DoubleExtended, APInt::getAllOnesValue(BitWidth));
3353 return APFloat(IEEEquad, APInt::getAllOnesValue(BitWidth));
3354 return APFloat(PPCDoubleDouble, APInt::getAllOnesValue(BitWidth));