Lines Matching refs:opStatus

1264     opStatus status;  in multiplySignificand()
1506 IEEEFloat::opStatus IEEEFloat::handleOverflow(roundingMode rounding_mode) { in handleOverflow()
1516 return (opStatus) (opOverflow | opInexact); in handleOverflow()
1574 IEEEFloat::opStatus IEEEFloat::normalize(roundingMode rounding_mode, in normalize()
1698 return (opStatus) (opUnderflow | opInexact); in normalize()
1701 IEEEFloat::opStatus IEEEFloat::addOrSubtractSpecials(const IEEEFloat &rhs, in addOrSubtractSpecials()
1826 IEEEFloat::opStatus IEEEFloat::multiplySpecials(const IEEEFloat &rhs) { in multiplySpecials()
1870 IEEEFloat::opStatus IEEEFloat::divideSpecials(const IEEEFloat &rhs) { in divideSpecials()
1919 IEEEFloat::opStatus IEEEFloat::modSpecials(const IEEEFloat &rhs) { in modSpecials()
1957 IEEEFloat::opStatus IEEEFloat::remainderSpecials(const IEEEFloat &rhs) { in remainderSpecials()
2007 IEEEFloat::opStatus IEEEFloat::addOrSubtract(const IEEEFloat &rhs, in addOrSubtract()
2010 opStatus fs; in addOrSubtract()
2040 IEEEFloat::opStatus IEEEFloat::add(const IEEEFloat &rhs, in add()
2046 IEEEFloat::opStatus IEEEFloat::subtract(const IEEEFloat &rhs, in subtract()
2052 IEEEFloat::opStatus IEEEFloat::multiply(const IEEEFloat &rhs, in multiply()
2054 opStatus fs; in multiply()
2065 fs = (opStatus) (fs | opInexact); in multiply()
2072 IEEEFloat::opStatus IEEEFloat::divide(const IEEEFloat &rhs, in divide()
2074 opStatus fs; in divide()
2085 fs = (opStatus) (fs | opInexact); in divide()
2092 IEEEFloat::opStatus IEEEFloat::remainder(const IEEEFloat &rhs) { in remainder()
2093 opStatus fs; in remainder()
2202 IEEEFloat::opStatus IEEEFloat::mod(const IEEEFloat &rhs) { in mod()
2203 opStatus fs; in mod()
2229 IEEEFloat::opStatus IEEEFloat::fusedMultiplyAdd(const IEEEFloat &multiplicand, in fusedMultiplyAdd()
2232 opStatus fs; in fusedMultiplyAdd()
2247 fs = (opStatus) (fs | opInexact); in fusedMultiplyAdd()
2275 IEEEFloat::opStatus IEEEFloat::roundToIntegral(roundingMode rounding_mode) { in roundToIntegral()
2276 opStatus fs; in roundToIntegral()
2439 IEEEFloat::opStatus IEEEFloat::convert(const fltSemantics &toSemantics, in convert()
2444 opStatus fs; in convert()
2585 IEEEFloat::opStatus IEEEFloat::convertToSignExtendedInteger( in convertToSignExtendedInteger()
2698 IEEEFloat::opStatus
2702 opStatus fs; in convertToInteger()
2731 IEEEFloat::opStatus IEEEFloat::convertFromUnsignedParts( in convertFromUnsignedParts()
2759 IEEEFloat::opStatus IEEEFloat::convertFromAPInt(const APInt &Val, bool isSigned, in convertFromAPInt()
2776 IEEEFloat::opStatus
2780 opStatus status; in convertFromSignExtendedInteger()
2802 IEEEFloat::opStatus
2818 Expected<IEEEFloat::opStatus>
2912 IEEEFloat::opStatus
2930 opStatus sigStatus, powStatus; in roundSignificandWithExponent()
2997 Expected<IEEEFloat::opStatus>
3000 opStatus fs; in convertFromDecimalString()
3190 Expected<IEEEFloat::opStatus>
3452 opStatus fs; in convertPPCDoubleDoubleAPFloatToAPInt()
3714 opStatus fs; in initFromPPCDoubleDoubleAPInt()
4339 IEEEFloat::opStatus IEEEFloat::next(bool nextDown) { in next()
4345 opStatus result = opOK; in next()
4626 APFloat::opStatus DoubleAPFloat::addImpl(const APFloat &a, const APFloat &aa, in addImpl()
4636 return (opStatus)Status; in addImpl()
4654 return (opStatus)Status; in addImpl()
4696 return (opStatus)Status; in addImpl()
4702 return (opStatus)Status; in addImpl()
4705 APFloat::opStatus DoubleAPFloat::addWithSpecial(const DoubleAPFloat &LHS, in addWithSpecial()
4751 APFloat::opStatus DoubleAPFloat::add(const DoubleAPFloat &RHS, in add()
4756 APFloat::opStatus DoubleAPFloat::subtract(const DoubleAPFloat &RHS, in subtract()
4764 APFloat::opStatus DoubleAPFloat::multiply(const DoubleAPFloat &RHS, in multiply()
4815 return (opStatus)Status; in multiply()
4847 return (opStatus)Status; in multiply()
4850 APFloat::opStatus DoubleAPFloat::divide(const DoubleAPFloat &RHS, in divide()
4860 APFloat::opStatus DoubleAPFloat::remainder(const DoubleAPFloat &RHS) { in remainder()
4869 APFloat::opStatus DoubleAPFloat::mod(const DoubleAPFloat &RHS) { in mod()
4877 APFloat::opStatus
4890 APFloat::opStatus DoubleAPFloat::roundToIntegral(APFloat::roundingMode RM) { in roundToIntegral()
4995 Expected<APFloat::opStatus> DoubleAPFloat::convertFromString(StringRef S, in convertFromString()
5004 APFloat::opStatus DoubleAPFloat::next(bool nextDown) { in next()
5012 APFloat::opStatus
5021 APFloat::opStatus DoubleAPFloat::convertFromAPInt(const APInt &Input, in convertFromAPInt()
5031 APFloat::opStatus
5042 APFloat::opStatus
5163 Expected<APFloat::opStatus> APFloat::convertFromString(StringRef Str, in convertFromString()
5196 APFloat::opStatus APFloat::convert(const fltSemantics &ToSemantics, in convert()
5243 APFloat::opStatus APFloat::convertToInteger(APSInt &result, in convertToInteger()
5248 opStatus status = convertToInteger(parts, bitWidth, result.isSigned(), in convertToInteger()
5262 opStatus St = Temp.convert(semIEEEdouble, rmNearestTiesToEven, &LosesInfo); in convertToDouble()
5275 opStatus St = Temp.convert(semIEEEsingle, rmNearestTiesToEven, &LosesInfo); in convertToFloat()