Lines Matching refs:bitWidth
2246 unsigned bitWidth = result.getBitWidth();
2249 parts.data(), bitWidth, result.isSigned(), rounding_mode, isExact);
2251 result = APInt(bitWidth, parts);
3372 APFloat::getAllOnesValue(unsigned BitWidth, bool isIEEE)
3374 switch (BitWidth) {
3376 return APFloat(IEEEhalf, APInt::getAllOnesValue(BitWidth));
3378 return APFloat(IEEEsingle, APInt::getAllOnesValue(BitWidth));
3380 return APFloat(IEEEdouble, APInt::getAllOnesValue(BitWidth));
3382 return APFloat(x87DoubleExtended, APInt::getAllOnesValue(BitWidth));
3385 return APFloat(IEEEquad, APInt::getAllOnesValue(BitWidth));
3386 return APFloat(PPCDoubleDouble, APInt::getAllOnesValue(BitWidth));