Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp2962 unsigned int excessPrecision, truncatedBits; in roundSignificandWithExponent() local
2965 excessPrecision = calcSemantics.precision - semantics->precision; in roundSignificandWithExponent()
2966 truncatedBits = excessPrecision; in roundSignificandWithExponent()
2991 excessPrecision += (semantics->minExponent - decSig.exponent); in roundSignificandWithExponent()
2992 truncatedBits = excessPrecision; in roundSignificandWithExponent()
2993 if (excessPrecision > calcSemantics.precision) in roundSignificandWithExponent()
2994 excessPrecision = calcSemantics.precision; in roundSignificandWithExponent()
3008 excessPrecision, isNearest); in roundSignificandWithExponent()
3013 calcSemantics.precision - excessPrecision, in roundSignificandWithExponent()
3014 excessPrecision); in roundSignificandWithExponent()
[all …]