Home
last modified time | relevance | path

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

/external/deqp/modules/gles3/functional/
Des3fShaderDerivateTests.cpp270 static float convertFloatFlushToZeroRtn (float value, int minExponent, int numAccurateBits) in convertFloatFlushToZeroRtn() argument
284 if (value > 0.0f && tcu::Float32(value).exponent() < minExponent) in convertFloatFlushToZeroRtn()
311 static float convertFloatFlushToZeroRtp (float value, int minExponent, int numAccurateBits) in convertFloatFlushToZeroRtp() argument
313 return -convertFloatFlushToZeroRtn(-value, minExponent, numAccurateBits); in convertFloatFlushToZeroRtp()
457 const int minExponent = getMinExponent(precision); in reverifyConstantDerivateWithFlushRelaxations() local
493 …n(addErrorUlp((float)functionValueForward[c], -0.5f, numVaryingSampleBits), minExponent, numBits), in reverifyConstantDerivateWithFlushRelaxations()
494 …(addErrorUlp((float)functionValueForward[c], +0.5f, numVaryingSampleBits), minExponent, numBits)); in reverifyConstantDerivateWithFlushRelaxations()
495 …n(addErrorUlp((float)functionValueBackward[c], -0.5f, numVaryingSampleBits), minExponent, numBits), in reverifyConstantDerivateWithFlushRelaxations()
496 …(addErrorUlp((float)functionValueBackward[c], +0.5f, numVaryingSampleBits), minExponent, numBits)); in reverifyConstantDerivateWithFlushRelaxations()
511 …al numeratorRange (convertFloatFlushToZeroRtn((float)numerator.lo(), minExponent, numeratorLoBit… in reverifyConstantDerivateWithFlushRelaxations()
[all …]
/external/llvm/lib/Support/
DAPFloat.cpp50 APFloat::ExponentType minExponent; member
701 return isFiniteNonZero() && (exponent == semantics->minExponent) && in isDenormal()
711 return isFiniteNonZero() && exponent == semantics->minExponent && in isSmallest()
1285 if (exponent + exponentChange < semantics->minExponent) in normalize()
1286 exponentChange = semantics->minExponent - exponent; in normalize()
1329 exponent = semantics->minExponent; in normalize()
2000 if (exponent + exponentChange < toSemantics.minExponent) in convert()
2001 exponentChange = toSemantics.minExponent - exponent; in convert()
2460 if (decSig.exponent < semantics->minExponent) { in roundSignificandWithExponent()
2461 excessPrecision += (semantics->minExponent - decSig.exponent); in roundSignificandWithExponent()
[all …]