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 convertFloorFlushToZero (float value, int minExponent, int numAccurateBits) in convertFloorFlushToZero() argument
284 if (value > 0.0f && tcu::Float32(value).exponent() < minExponent) in convertFloorFlushToZero()
311 static float convertCeilFlushToZero (float value, int minExponent, int numAccurateBits) in convertCeilFlushToZero() argument
313 return -convertFloorFlushToZero(-value, minExponent, numAccurateBits); in convertCeilFlushToZero()
457 const int minExponent = getMinExponent(precision); in reverifyConstantDerivateWithFlushRelaxations() local
493 …al forwardComponent (convertFloorFlushToZero(functionValueForward[c], minExponent, numVaryingSamp… in reverifyConstantDerivateWithFlushRelaxations()
494 convertCeilFlushToZero(functionValueForward[c], minExponent, numVaryingSampleBits)); in reverifyConstantDerivateWithFlushRelaxations()
495 … backwardComponent (convertFloorFlushToZero(functionValueBackward[c], minExponent, numVaryingSamp… in reverifyConstantDerivateWithFlushRelaxations()
496 convertCeilFlushToZero(functionValueBackward[c], minExponent, numVaryingSampleBits)); in reverifyConstantDerivateWithFlushRelaxations()
511 …const tcu::Interval nominatorRange (convertFloorFlushToZero(nominator.lo(), minExponent, nominat… in reverifyConstantDerivateWithFlushRelaxations()
[all …]
/external/llvm/lib/Support/
DAPFloat.cpp51 APFloat::ExponentType minExponent; member
702 return isFiniteNonZero() && (exponent == semantics->minExponent) && in isDenormal()
712 return isFiniteNonZero() && exponent == semantics->minExponent && in isSmallest()
1274 if (exponent + exponentChange < semantics->minExponent) in normalize()
1275 exponentChange = semantics->minExponent - exponent; in normalize()
1318 exponent = semantics->minExponent; in normalize()
1989 if (exponent + exponentChange < toSemantics.minExponent) in convert()
1990 exponentChange = toSemantics.minExponent - exponent; in convert()
2449 if (decSig.exponent < semantics->minExponent) { in roundSignificandWithExponent()
2450 excessPrecision += (semantics->minExponent - decSig.exponent); in roundSignificandWithExponent()
[all …]