Lines Matching refs:opStatus
1068 opStatus status; in multiplySignificand()
1293 IEEEFloat::opStatus IEEEFloat::handleOverflow(roundingMode rounding_mode) { in handleOverflow()
1300 return (opStatus) (opOverflow | opInexact); in handleOverflow()
1355 IEEEFloat::opStatus IEEEFloat::normalize(roundingMode rounding_mode, in normalize()
1436 return (opStatus) (opOverflow | opInexact); in normalize()
1458 return (opStatus) (opUnderflow | opInexact); in normalize()
1461 IEEEFloat::opStatus IEEEFloat::addOrSubtractSpecials(const IEEEFloat &rhs, in addOrSubtractSpecials()
1586 IEEEFloat::opStatus IEEEFloat::multiplySpecials(const IEEEFloat &rhs) { in multiplySpecials()
1630 IEEEFloat::opStatus IEEEFloat::divideSpecials(const IEEEFloat &rhs) { in divideSpecials()
1676 IEEEFloat::opStatus IEEEFloat::modSpecials(const IEEEFloat &rhs) { in modSpecials()
1714 IEEEFloat::opStatus IEEEFloat::remainderSpecials(const IEEEFloat &rhs) { in remainderSpecials()
1759 IEEEFloat::opStatus IEEEFloat::addOrSubtract(const IEEEFloat &rhs, in addOrSubtract()
1762 opStatus fs; in addOrSubtract()
1789 IEEEFloat::opStatus IEEEFloat::add(const IEEEFloat &rhs, in add()
1795 IEEEFloat::opStatus IEEEFloat::subtract(const IEEEFloat &rhs, in subtract()
1801 IEEEFloat::opStatus IEEEFloat::multiply(const IEEEFloat &rhs, in multiply()
1803 opStatus fs; in multiply()
1812 fs = (opStatus) (fs | opInexact); in multiply()
1819 IEEEFloat::opStatus IEEEFloat::divide(const IEEEFloat &rhs, in divide()
1821 opStatus fs; in divide()
1830 fs = (opStatus) (fs | opInexact); in divide()
1837 IEEEFloat::opStatus IEEEFloat::remainder(const IEEEFloat &rhs) { in remainder()
1838 opStatus fs; in remainder()
1942 IEEEFloat::opStatus IEEEFloat::mod(const IEEEFloat &rhs) { in mod()
1943 opStatus fs; in mod()
1963 IEEEFloat::opStatus IEEEFloat::fusedMultiplyAdd(const IEEEFloat &multiplicand, in fusedMultiplyAdd()
1966 opStatus fs; in fusedMultiplyAdd()
1981 fs = (opStatus) (fs | opInexact); in fusedMultiplyAdd()
2006 IEEEFloat::opStatus IEEEFloat::roundToIntegral(roundingMode rounding_mode) { in roundToIntegral()
2007 opStatus fs; in roundToIntegral()
2170 IEEEFloat::opStatus IEEEFloat::convert(const fltSemantics &toSemantics, in convert()
2175 opStatus fs; in convert()
2280 IEEEFloat::opStatus IEEEFloat::convertToSignExtendedInteger( in convertToSignExtendedInteger()
2393 IEEEFloat::opStatus
2397 opStatus fs; in convertToInteger()
2426 IEEEFloat::opStatus IEEEFloat::convertFromUnsignedParts( in convertFromUnsignedParts()
2454 IEEEFloat::opStatus IEEEFloat::convertFromAPInt(const APInt &Val, bool isSigned, in convertFromAPInt()
2471 IEEEFloat::opStatus
2475 opStatus status; in convertFromSignExtendedInteger()
2497 IEEEFloat::opStatus
2513 Expected<IEEEFloat::opStatus>
2607 IEEEFloat::opStatus
2625 opStatus sigStatus, powStatus; in roundSignificandWithExponent()
2692 Expected<IEEEFloat::opStatus>
2695 opStatus fs; in convertFromDecimalString()
2883 Expected<IEEEFloat::opStatus>
3145 opStatus fs; in convertPPCDoubleDoubleAPFloatToAPInt()
3417 opStatus fs; in initFromPPCDoubleDoubleAPInt()
4018 IEEEFloat::opStatus IEEEFloat::next(bool nextDown) { in next()
4024 opStatus result = opOK; in next()
4287 APFloat::opStatus DoubleAPFloat::addImpl(const APFloat &a, const APFloat &aa, in addImpl()
4297 return (opStatus)Status; in addImpl()
4315 return (opStatus)Status; in addImpl()
4357 return (opStatus)Status; in addImpl()
4363 return (opStatus)Status; in addImpl()
4366 APFloat::opStatus DoubleAPFloat::addWithSpecial(const DoubleAPFloat &LHS, in addWithSpecial()
4412 APFloat::opStatus DoubleAPFloat::add(const DoubleAPFloat &RHS, in add()
4417 APFloat::opStatus DoubleAPFloat::subtract(const DoubleAPFloat &RHS, in subtract()
4425 APFloat::opStatus DoubleAPFloat::multiply(const DoubleAPFloat &RHS, in multiply()
4476 return (opStatus)Status; in multiply()
4508 return (opStatus)Status; in multiply()
4511 APFloat::opStatus DoubleAPFloat::divide(const DoubleAPFloat &RHS, in divide()
4521 APFloat::opStatus DoubleAPFloat::remainder(const DoubleAPFloat &RHS) { in remainder()
4530 APFloat::opStatus DoubleAPFloat::mod(const DoubleAPFloat &RHS) { in mod()
4538 APFloat::opStatus
4551 APFloat::opStatus DoubleAPFloat::roundToIntegral(APFloat::roundingMode RM) { in roundToIntegral()
4656 Expected<APFloat::opStatus> DoubleAPFloat::convertFromString(StringRef S, in convertFromString()
4665 APFloat::opStatus DoubleAPFloat::next(bool nextDown) { in next()
4673 APFloat::opStatus
4682 APFloat::opStatus DoubleAPFloat::convertFromAPInt(const APInt &Input, in convertFromAPInt()
4692 APFloat::opStatus
4703 APFloat::opStatus
4805 Expected<APFloat::opStatus> APFloat::convertFromString(StringRef Str, in convertFromString()
4825 APFloat::opStatus APFloat::convert(const fltSemantics &ToSemantics, in convert()
4873 APFloat::opStatus APFloat::convertToInteger(APSInt &result, in convertToInteger()
4878 opStatus status = convertToInteger(parts, bitWidth, result.isSigned(), in convertToInteger()
4892 opStatus St = Temp.convert(semIEEEdouble, rmNearestTiesToEven, &LosesInfo); in convertToDouble()
4905 opStatus St = Temp.convert(semIEEEsingle, rmNearestTiesToEven, &LosesInfo); in convertToFloat()