Lines Matching full:bitwidth
2194 unsigned bitWidth = result.getBitWidth();
2197 parts.data(), bitWidth, result.isSigned(), rounding_mode, isExact);
2199 result = APInt(bitWidth, parts);
3320 APFloat::getAllOnesValue(unsigned BitWidth, bool isIEEE)
3322 switch (BitWidth) {
3324 return APFloat(IEEEhalf, APInt::getAllOnesValue(BitWidth));
3326 return APFloat(IEEEsingle, APInt::getAllOnesValue(BitWidth));
3328 return APFloat(IEEEdouble, APInt::getAllOnesValue(BitWidth));
3330 return APFloat(x87DoubleExtended, APInt::getAllOnesValue(BitWidth));
3333 return APFloat(IEEEquad, APInt::getAllOnesValue(BitWidth));
3334 return APFloat(PPCDoubleDouble, APInt::getAllOnesValue(BitWidth));