Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/llvm/lib/Support/
H A DAPFloat.cpp2763 fltSemantics calcSemantics = { 32767, -32767, 0, 0 }; in roundSignificandWithExponent() local
2779 calcSemantics.precision = parts * integerPartWidth - 1; in roundSignificandWithExponent()
2780 excessPrecision = calcSemantics.precision - semantics->precision; in roundSignificandWithExponent()
2783 IEEEFloat decSig(calcSemantics, uninitialized); in roundSignificandWithExponent()
2785 IEEEFloat pow5(calcSemantics); in roundSignificandWithExponent()
2808 if (excessPrecision > calcSemantics.precision) in roundSignificandWithExponent()
2809 excessPrecision = calcSemantics.precision; in roundSignificandWithExponent()
2818 (decSig.significandParts(), calcSemantics.precision - 1) == 1); in roundSignificandWithExponent()
2828 calcSemantics.precision - excessPrecision, in roundSignificandWithExponent()
2834 - (calcSemantics.precision - excessPrecision)); in roundSignificandWithExponent()