Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/Support/
DAPFloat.cpp2306 fltSemantics calcSemantics = { 32767, -32767, 0, true }; in roundSignificandWithExponent() local
2322 calcSemantics.precision = parts * integerPartWidth - 1; in roundSignificandWithExponent()
2323 excessPrecision = calcSemantics.precision - semantics->precision; in roundSignificandWithExponent()
2326 APFloat decSig(calcSemantics, fcZero, sign); in roundSignificandWithExponent()
2327 APFloat pow5(calcSemantics, fcZero, false); in roundSignificandWithExponent()
2350 if (excessPrecision > calcSemantics.precision) in roundSignificandWithExponent()
2351 excessPrecision = calcSemantics.precision; in roundSignificandWithExponent()
2360 (decSig.significandParts(), calcSemantics.precision - 1) == 1); in roundSignificandWithExponent()
2370 calcSemantics.precision - excessPrecision, in roundSignificandWithExponent()
2376 - (calcSemantics.precision - excessPrecision)); in roundSignificandWithExponent()
/external/llvm/lib/Support/
DAPFloat.cpp2443 fltSemantics calcSemantics = { 32767, -32767, 0, 0 }; in roundSignificandWithExponent() local
2459 calcSemantics.precision = parts * integerPartWidth - 1; in roundSignificandWithExponent()
2460 excessPrecision = calcSemantics.precision - semantics->precision; in roundSignificandWithExponent()
2463 APFloat decSig = APFloat::getZero(calcSemantics, sign); in roundSignificandWithExponent()
2464 APFloat pow5(calcSemantics); in roundSignificandWithExponent()
2487 if (excessPrecision > calcSemantics.precision) in roundSignificandWithExponent()
2488 excessPrecision = calcSemantics.precision; in roundSignificandWithExponent()
2497 (decSig.significandParts(), calcSemantics.precision - 1) == 1); in roundSignificandWithExponent()
2507 calcSemantics.precision - excessPrecision, in roundSignificandWithExponent()
2513 - (calcSemantics.precision - excessPrecision)); in roundSignificandWithExponent()