Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Support/
H A DAPFloat.cpp2352 fltSemantics calcSemantics = { 32767, -32767, 0, 0 }; in roundSignificandWithExponent() local
2368 calcSemantics.precision = parts * integerPartWidth - 1; in roundSignificandWithExponent()
2369 excessPrecision = calcSemantics.precision - semantics->precision; in roundSignificandWithExponent()
2372 IEEEFloat decSig(calcSemantics, uninitialized); in roundSignificandWithExponent()
2374 IEEEFloat pow5(calcSemantics); in roundSignificandWithExponent()
2397 if (excessPrecision > calcSemantics.precision) in roundSignificandWithExponent()
2398 excessPrecision = calcSemantics.precision; in roundSignificandWithExponent()
2407 (decSig.significandParts(), calcSemantics.precision - 1) == 1); in roundSignificandWithExponent()
2417 calcSemantics.precision - excessPrecision, in roundSignificandWithExponent()
2423 - (calcSemantics.precision - excessPrecision)); in roundSignificandWithExponent()