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.cpp3064 unsigned int excessPrecision, truncatedBits; in roundSignificandWithExponent() local
3067 excessPrecision = calcSemantics.precision - semantics->precision; in roundSignificandWithExponent()
3068 truncatedBits = excessPrecision; in roundSignificandWithExponent()
3093 excessPrecision += (semantics->minExponent - decSig.exponent); in roundSignificandWithExponent()
3094 truncatedBits = excessPrecision; in roundSignificandWithExponent()
3095 if (excessPrecision > calcSemantics.precision) in roundSignificandWithExponent()
3096 excessPrecision = calcSemantics.precision; in roundSignificandWithExponent()
3110 excessPrecision, isNearest); in roundSignificandWithExponent()
3115 calcSemantics.precision - excessPrecision, in roundSignificandWithExponent()
3116 excessPrecision); in roundSignificandWithExponent()
[all …]