Lines Matching refs:opStatus

1293     opStatus status;  in multiplySignificand()
1535 IEEEFloat::opStatus IEEEFloat::handleOverflow(roundingMode rounding_mode) { in handleOverflow()
1546 return static_cast<opStatus>(opOverflow | opInexact); in handleOverflow()
1605 IEEEFloat::opStatus IEEEFloat::normalize(roundingMode rounding_mode, in normalize()
1729 return (opStatus) (opUnderflow | opInexact); in normalize()
1732 IEEEFloat::opStatus IEEEFloat::addOrSubtractSpecials(const IEEEFloat &rhs, in addOrSubtractSpecials()
1857 IEEEFloat::opStatus IEEEFloat::multiplySpecials(const IEEEFloat &rhs) { in multiplySpecials()
1901 IEEEFloat::opStatus IEEEFloat::divideSpecials(const IEEEFloat &rhs) { in divideSpecials()
1950 IEEEFloat::opStatus IEEEFloat::modSpecials(const IEEEFloat &rhs) { in modSpecials()
1988 IEEEFloat::opStatus IEEEFloat::remainderSpecials(const IEEEFloat &rhs) { in remainderSpecials()
2038 IEEEFloat::opStatus IEEEFloat::addOrSubtract(const IEEEFloat &rhs, in addOrSubtract()
2041 opStatus fs; in addOrSubtract()
2071 IEEEFloat::opStatus IEEEFloat::add(const IEEEFloat &rhs, in add()
2077 IEEEFloat::opStatus IEEEFloat::subtract(const IEEEFloat &rhs, in subtract()
2083 IEEEFloat::opStatus IEEEFloat::multiply(const IEEEFloat &rhs, in multiply()
2085 opStatus fs; in multiply()
2096 fs = (opStatus) (fs | opInexact); in multiply()
2103 IEEEFloat::opStatus IEEEFloat::divide(const IEEEFloat &rhs, in divide()
2105 opStatus fs; in divide()
2116 fs = (opStatus) (fs | opInexact); in divide()
2123 IEEEFloat::opStatus IEEEFloat::remainder(const IEEEFloat &rhs) { in remainder()
2124 opStatus fs; in remainder()
2233 IEEEFloat::opStatus IEEEFloat::mod(const IEEEFloat &rhs) { in mod()
2234 opStatus fs; in mod()
2260 IEEEFloat::opStatus IEEEFloat::fusedMultiplyAdd(const IEEEFloat &multiplicand, in fusedMultiplyAdd()
2263 opStatus fs; in fusedMultiplyAdd()
2278 fs = (opStatus) (fs | opInexact); in fusedMultiplyAdd()
2306 IEEEFloat::opStatus IEEEFloat::roundToIntegral(roundingMode rounding_mode) { in roundToIntegral()
2307 opStatus fs; in roundToIntegral()
2470 IEEEFloat::opStatus IEEEFloat::convert(const fltSemantics &toSemantics, in convert()
2475 opStatus fs; in convert()
2616 IEEEFloat::opStatus IEEEFloat::convertToSignExtendedInteger( in convertToSignExtendedInteger()
2729 IEEEFloat::opStatus
2733 opStatus fs; in convertToInteger()
2762 IEEEFloat::opStatus IEEEFloat::convertFromUnsignedParts( in convertFromUnsignedParts()
2790 IEEEFloat::opStatus IEEEFloat::convertFromAPInt(const APInt &Val, bool isSigned, in convertFromAPInt()
2807 IEEEFloat::opStatus
2811 opStatus status; in convertFromSignExtendedInteger()
2833 IEEEFloat::opStatus
2849 Expected<IEEEFloat::opStatus>
2943 IEEEFloat::opStatus
2961 opStatus sigStatus, powStatus; in roundSignificandWithExponent()
3028 Expected<IEEEFloat::opStatus>
3031 opStatus fs; in convertFromDecimalString()
3221 Expected<IEEEFloat::opStatus>
3483 opStatus fs; in convertPPCDoubleDoubleAPFloatToAPInt()
3788 opStatus fs; in initFromPPCDoubleDoubleAPInt()
4453 IEEEFloat::opStatus IEEEFloat::next(bool nextDown) { in next()
4459 opStatus result = opOK; in next()
4747 APFloat::opStatus DoubleAPFloat::addImpl(const APFloat &a, const APFloat &aa, in addImpl()
4757 return (opStatus)Status; in addImpl()
4775 return (opStatus)Status; in addImpl()
4817 return (opStatus)Status; in addImpl()
4823 return (opStatus)Status; in addImpl()
4826 APFloat::opStatus DoubleAPFloat::addWithSpecial(const DoubleAPFloat &LHS, in addWithSpecial()
4872 APFloat::opStatus DoubleAPFloat::add(const DoubleAPFloat &RHS, in add()
4877 APFloat::opStatus DoubleAPFloat::subtract(const DoubleAPFloat &RHS, in subtract()
4885 APFloat::opStatus DoubleAPFloat::multiply(const DoubleAPFloat &RHS, in multiply()
4936 return (opStatus)Status; in multiply()
4968 return (opStatus)Status; in multiply()
4971 APFloat::opStatus DoubleAPFloat::divide(const DoubleAPFloat &RHS, in divide()
4981 APFloat::opStatus DoubleAPFloat::remainder(const DoubleAPFloat &RHS) { in remainder()
4990 APFloat::opStatus DoubleAPFloat::mod(const DoubleAPFloat &RHS) { in mod()
4998 APFloat::opStatus
5011 APFloat::opStatus DoubleAPFloat::roundToIntegral(APFloat::roundingMode RM) { in roundToIntegral()
5116 Expected<APFloat::opStatus> DoubleAPFloat::convertFromString(StringRef S, in convertFromString()
5125 APFloat::opStatus DoubleAPFloat::next(bool nextDown) { in next()
5133 APFloat::opStatus
5142 APFloat::opStatus DoubleAPFloat::convertFromAPInt(const APInt &Input, in convertFromAPInt()
5152 APFloat::opStatus
5163 APFloat::opStatus
5284 Expected<APFloat::opStatus> APFloat::convertFromString(StringRef Str, in convertFromString()
5317 APFloat::opStatus APFloat::convert(const fltSemantics &ToSemantics, in convert()
5364 APFloat::opStatus APFloat::convertToInteger(APSInt &result, in convertToInteger()
5369 opStatus status = convertToInteger(parts, bitWidth, result.isSigned(), in convertToInteger()
5383 opStatus St = Temp.convert(semIEEEdouble, rmNearestTiesToEven, &LosesInfo); in convertToDouble()
5397 opStatus St = Temp.convert(semIEEEquad, rmNearestTiesToEven, &LosesInfo); in convertToQuad()
5411 opStatus St = Temp.convert(semIEEEsingle, rmNearestTiesToEven, &LosesInfo); in convertToFloat()