Home
last modified time | relevance | path

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

/external/llvm/lib/Support/
DAPFloat.cpp2440 fltSemantics calcSemantics = { 32767, -32767, 0, 0 }; in roundSignificandWithExponent() local
2456 calcSemantics.precision = parts * integerPartWidth - 1; in roundSignificandWithExponent()
2457 excessPrecision = calcSemantics.precision - semantics->precision; in roundSignificandWithExponent()
2460 APFloat decSig = APFloat::getZero(calcSemantics, sign); in roundSignificandWithExponent()
2461 APFloat pow5(calcSemantics); in roundSignificandWithExponent()
2484 if (excessPrecision > calcSemantics.precision) in roundSignificandWithExponent()
2485 excessPrecision = calcSemantics.precision; in roundSignificandWithExponent()
2494 (decSig.significandParts(), calcSemantics.precision - 1) == 1); in roundSignificandWithExponent()
2504 calcSemantics.precision - excessPrecision, in roundSignificandWithExponent()
2510 - (calcSemantics.precision - excessPrecision)); in roundSignificandWithExponent()