Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Support/
H A DAPFloat.cpp2636 fltSemantics calcSemantics = { 32767, -32767, 0, 0 }; in roundSignificandWithExponent() local
2652 calcSemantics.precision = parts * integerPartWidth - 1; in roundSignificandWithExponent()
2653 excessPrecision = calcSemantics.precision - semantics->precision; in roundSignificandWithExponent()
2656 IEEEFloat decSig(calcSemantics, uninitialized); in roundSignificandWithExponent()
2658 IEEEFloat pow5(calcSemantics); in roundSignificandWithExponent()
2681 if (excessPrecision > calcSemantics.precision) in roundSignificandWithExponent()
2682 excessPrecision = calcSemantics.precision; in roundSignificandWithExponent()
2691 (decSig.significandParts(), calcSemantics.precision - 1) == 1); in roundSignificandWithExponent()
2701 calcSemantics.precision - excessPrecision, in roundSignificandWithExponent()
2707 - (calcSemantics.precision - excessPrecision)); in roundSignificandWithExponent()