Lines Matching refs:opStatus

1068     opStatus status;  in multiplySignificand()
1310 IEEEFloat::opStatus IEEEFloat::handleOverflow(roundingMode rounding_mode) { in handleOverflow()
1317 return (opStatus) (opOverflow | opInexact); in handleOverflow()
1372 IEEEFloat::opStatus IEEEFloat::normalize(roundingMode rounding_mode, in normalize()
1453 return (opStatus) (opOverflow | opInexact); in normalize()
1475 return (opStatus) (opUnderflow | opInexact); in normalize()
1478 IEEEFloat::opStatus IEEEFloat::addOrSubtractSpecials(const IEEEFloat &rhs, in addOrSubtractSpecials()
1603 IEEEFloat::opStatus IEEEFloat::multiplySpecials(const IEEEFloat &rhs) { in multiplySpecials()
1647 IEEEFloat::opStatus IEEEFloat::divideSpecials(const IEEEFloat &rhs) { in divideSpecials()
1693 IEEEFloat::opStatus IEEEFloat::modSpecials(const IEEEFloat &rhs) { in modSpecials()
1731 IEEEFloat::opStatus IEEEFloat::remainderSpecials(const IEEEFloat &rhs) { in remainderSpecials()
1776 IEEEFloat::opStatus IEEEFloat::addOrSubtract(const IEEEFloat &rhs, in addOrSubtract()
1779 opStatus fs; in addOrSubtract()
1806 IEEEFloat::opStatus IEEEFloat::add(const IEEEFloat &rhs, in add()
1812 IEEEFloat::opStatus IEEEFloat::subtract(const IEEEFloat &rhs, in subtract()
1818 IEEEFloat::opStatus IEEEFloat::multiply(const IEEEFloat &rhs, in multiply()
1820 opStatus fs; in multiply()
1829 fs = (opStatus) (fs | opInexact); in multiply()
1836 IEEEFloat::opStatus IEEEFloat::divide(const IEEEFloat &rhs, in divide()
1838 opStatus fs; in divide()
1847 fs = (opStatus) (fs | opInexact); in divide()
1854 IEEEFloat::opStatus IEEEFloat::remainder(const IEEEFloat &rhs) { in remainder()
1855 opStatus fs; in remainder()
1959 IEEEFloat::opStatus IEEEFloat::mod(const IEEEFloat &rhs) { in mod()
1960 opStatus fs; in mod()
1980 IEEEFloat::opStatus IEEEFloat::fusedMultiplyAdd(const IEEEFloat &multiplicand, in fusedMultiplyAdd()
1983 opStatus fs; in fusedMultiplyAdd()
1998 fs = (opStatus) (fs | opInexact); in fusedMultiplyAdd()
2023 IEEEFloat::opStatus IEEEFloat::roundToIntegral(roundingMode rounding_mode) { in roundToIntegral()
2024 opStatus fs; in roundToIntegral()
2187 IEEEFloat::opStatus IEEEFloat::convert(const fltSemantics &toSemantics, in convert()
2192 opStatus fs; in convert()
2304 IEEEFloat::opStatus IEEEFloat::convertToSignExtendedInteger( in convertToSignExtendedInteger()
2417 IEEEFloat::opStatus
2421 opStatus fs; in convertToInteger()
2450 IEEEFloat::opStatus IEEEFloat::convertFromUnsignedParts( in convertFromUnsignedParts()
2478 IEEEFloat::opStatus IEEEFloat::convertFromAPInt(const APInt &Val, bool isSigned, in convertFromAPInt()
2495 IEEEFloat::opStatus
2499 opStatus status; in convertFromSignExtendedInteger()
2521 IEEEFloat::opStatus
2537 Expected<IEEEFloat::opStatus>
2631 IEEEFloat::opStatus
2649 opStatus sigStatus, powStatus; in roundSignificandWithExponent()
2716 Expected<IEEEFloat::opStatus>
2719 opStatus fs; in convertFromDecimalString()
2907 Expected<IEEEFloat::opStatus>
3169 opStatus fs; in convertPPCDoubleDoubleAPFloatToAPInt()
3439 opStatus fs; in initFromPPCDoubleDoubleAPInt()
4036 IEEEFloat::opStatus IEEEFloat::next(bool nextDown) { in next()
4042 opStatus result = opOK; in next()
4305 APFloat::opStatus DoubleAPFloat::addImpl(const APFloat &a, const APFloat &aa, in addImpl()
4315 return (opStatus)Status; in addImpl()
4333 return (opStatus)Status; in addImpl()
4375 return (opStatus)Status; in addImpl()
4381 return (opStatus)Status; in addImpl()
4384 APFloat::opStatus DoubleAPFloat::addWithSpecial(const DoubleAPFloat &LHS, in addWithSpecial()
4430 APFloat::opStatus DoubleAPFloat::add(const DoubleAPFloat &RHS, in add()
4435 APFloat::opStatus DoubleAPFloat::subtract(const DoubleAPFloat &RHS, in subtract()
4443 APFloat::opStatus DoubleAPFloat::multiply(const DoubleAPFloat &RHS, in multiply()
4494 return (opStatus)Status; in multiply()
4526 return (opStatus)Status; in multiply()
4529 APFloat::opStatus DoubleAPFloat::divide(const DoubleAPFloat &RHS, in divide()
4539 APFloat::opStatus DoubleAPFloat::remainder(const DoubleAPFloat &RHS) { in remainder()
4548 APFloat::opStatus DoubleAPFloat::mod(const DoubleAPFloat &RHS) { in mod()
4556 APFloat::opStatus
4569 APFloat::opStatus DoubleAPFloat::roundToIntegral(APFloat::roundingMode RM) { in roundToIntegral()
4674 Expected<APFloat::opStatus> DoubleAPFloat::convertFromString(StringRef S, in convertFromString()
4683 APFloat::opStatus DoubleAPFloat::next(bool nextDown) { in next()
4691 APFloat::opStatus
4700 APFloat::opStatus DoubleAPFloat::convertFromAPInt(const APInt &Input, in convertFromAPInt()
4710 APFloat::opStatus
4721 APFloat::opStatus
4823 Expected<APFloat::opStatus> APFloat::convertFromString(StringRef Str, in convertFromString()
4843 APFloat::opStatus APFloat::convert(const fltSemantics &ToSemantics, in convert()
4890 APFloat::opStatus APFloat::convertToInteger(APSInt &result, in convertToInteger()
4895 opStatus status = convertToInteger(parts, bitWidth, result.isSigned(), in convertToInteger()
4909 opStatus St = Temp.convert(semIEEEdouble, rmNearestTiesToEven, &LosesInfo); in convertToDouble()
4922 opStatus St = Temp.convert(semIEEEsingle, rmNearestTiesToEven, &LosesInfo); in convertToFloat()