Lines Matching refs:bitWidth
2249 unsigned bitWidth = result.getBitWidth();
2252 parts.data(), bitWidth, result.isSigned(), rounding_mode, isExact);
2254 result = APInt(bitWidth, parts);
3375 APFloat::getAllOnesValue(unsigned BitWidth, bool isIEEE)
3377 switch (BitWidth) {
3379 return APFloat(IEEEhalf, APInt::getAllOnesValue(BitWidth));
3381 return APFloat(IEEEsingle, APInt::getAllOnesValue(BitWidth));
3383 return APFloat(IEEEdouble, APInt::getAllOnesValue(BitWidth));
3385 return APFloat(x87DoubleExtended, APInt::getAllOnesValue(BitWidth));
3388 return APFloat(IEEEquad, APInt::getAllOnesValue(BitWidth));
3389 return APFloat(PPCDoubleDouble, APInt::getAllOnesValue(BitWidth));