Home
last modified time | relevance | path

Searched refs:excessPrecision (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Support/
H A DAPFloat.cpp2650 unsigned int excessPrecision, truncatedBits; in roundSignificandWithExponent() local
2653 excessPrecision = calcSemantics.precision - semantics->precision; in roundSignificandWithExponent()
2654 truncatedBits = excessPrecision; in roundSignificandWithExponent()
2679 excessPrecision += (semantics->minExponent - decSig.exponent); in roundSignificandWithExponent()
2680 truncatedBits = excessPrecision; in roundSignificandWithExponent()
2681 if (excessPrecision > calcSemantics.precision) in roundSignificandWithExponent()
2682 excessPrecision = calcSemantics.precision; in roundSignificandWithExponent()
2696 excessPrecision, isNearest); in roundSignificandWithExponent()
2701 calcSemantics.precision - excessPrecision, in roundSignificandWithExponent()
2702 excessPrecision); in roundSignificandWithExponent()
[all …]