Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp2917 fltSemantics calcSemantics = { 32767, -32767, 0, 0 }; in roundSignificandWithExponent() local
2933 calcSemantics.precision = parts * integerPartWidth - 1; in roundSignificandWithExponent()
2934 excessPrecision = calcSemantics.precision - semantics->precision; in roundSignificandWithExponent()
2937 IEEEFloat decSig(calcSemantics, uninitialized); in roundSignificandWithExponent()
2939 IEEEFloat pow5(calcSemantics); in roundSignificandWithExponent()
2962 if (excessPrecision > calcSemantics.precision) in roundSignificandWithExponent()
2963 excessPrecision = calcSemantics.precision; in roundSignificandWithExponent()
2972 (decSig.significandParts(), calcSemantics.precision - 1) == 1); in roundSignificandWithExponent()
2982 calcSemantics.precision - excessPrecision, in roundSignificandWithExponent()
2988 - (calcSemantics.precision - excessPrecision)); in roundSignificandWithExponent()