Home
last modified time | relevance | path

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

/external/llvm/lib/Support/
DAPFloat.cpp2408 fltSemantics calcSemantics = { 32767, -32767, 0 }; in roundSignificandWithExponent() local
2424 calcSemantics.precision = parts * integerPartWidth - 1; in roundSignificandWithExponent()
2425 excessPrecision = calcSemantics.precision - semantics->precision; in roundSignificandWithExponent()
2428 APFloat decSig = APFloat::getZero(calcSemantics, sign); in roundSignificandWithExponent()
2429 APFloat pow5(calcSemantics); in roundSignificandWithExponent()
2452 if (excessPrecision > calcSemantics.precision) in roundSignificandWithExponent()
2453 excessPrecision = calcSemantics.precision; in roundSignificandWithExponent()
2462 (decSig.significandParts(), calcSemantics.precision - 1) == 1); in roundSignificandWithExponent()
2472 calcSemantics.precision - excessPrecision, in roundSignificandWithExponent()
2478 - (calcSemantics.precision - excessPrecision)); in roundSignificandWithExponent()