Home
last modified time | relevance | path

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

/external/deqp/framework/common/
DtcuFloatFormat.cpp59 FloatFormat::FloatFormat (int minExp, in FloatFormat() argument
66 : m_minExp (minExp) in FloatFormat()
75 DE_ASSERT(minExp <= maxExp); in FloatFormat()
DtcuFloatFormat.hpp45 FloatFormat (int minExp,
/external/deqp/modules/gles3/functional/
Des3fShaderPackingFunctionTests.cpp554 const int minExp = -14; in iterate() local
563 const int exp = rnd.getInt(minExp, maxExp); in iterate()
659 const int minExp = -14; in iterate() local
669 const int exp = rnd.getInt(minExp, maxExp); in iterate()
/external/deqp/modules/gles31/functional/
Des31fShaderPackingFunctionTests.cpp558 const int minExp = -14; in iterate() local
567 const int exp = rnd.getInt(minExp, maxExp); in iterate()
663 const int minExp = -14; in iterate() local
673 const int exp = rnd.getInt(minExp, maxExp); in iterate()
/external/icu/android_icu4j/src/main/java/android/icu/number/
DNumberSkeletonImpl.java890 int minExp = 0; in parseExponentWidthOption() local
893 minExp++; in parseExponentWidthOption()
902 macros.notation = ((ScientificNotation) macros.notation).withMinExponentDigits(minExp); in parseExponentWidthOption()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/number/
DNumberSkeletonImpl.java889 int minExp = 0; in parseExponentWidthOption() local
892 minExp++; in parseExponentWidthOption()
901 macros.notation = ((ScientificNotation) macros.notation).withMinExponentDigits(minExp); in parseExponentWidthOption()
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
DvktShaderPackingFunctionTests.cpp626 const int minExp = -14; in iterate() local
635 const int exp = rnd.getInt(minExp, maxExp); in iterate()
744 const int minExp = -14; in iterate() local
776 const int exp = rnd.getInt(minExp, maxExp); in iterate()
DvktShaderBuiltinPrecisionTests.cpp5384 const int minExp = format.getMinExp(); in genRandom() local
5390 const double minRoot = deCbrt(minExp - 0.5 - (haveSubnormal ? 1.0 : 0.0)); in genRandom()
5466 const int minExp = format.getMinExp(); in genFixeds() local
5469 const float minQuantum = deFloatLdExp(1.0f, minExp - fractionBits); in genFixeds()
5470 const float minNormalized = deFloatLdExp(1.0f, minExp); in genFixeds()
5526 const int minExp = format.getMinExp(); in genRandom() local
5533 const double minRoot = deCbrt(minExp - 0.5 - (haveSubnormal ? 1.0 : 0.0)); in genRandom()
5617 const int minExp = format.getMinExp(); in genFixeds() local
5620 const float minQuantum = deFloatLdExp(1.0f, minExp - fractionBits); in genFixeds()
5621 const float minNormalized = deFloatLdExp(1.0f, minExp); in genFixeds()
/external/deqp/modules/glshared/
DglsBuiltinPrecisionTests.cpp3352 const int minExp = ctx.format.getMinExp(); in compare() local
3354 const double minQuantum = deLdExp(1.0f, minExp - fractionBits); in compare()
3355 const double minNormalized = deLdExp(1.0f, minExp); in compare()
4264 const int minExp = format.getMinExp(); in genRandom() local
4270 const double minRoot = deCbrt(minExp - 0.5 - (haveSubnormal ? 1.0 : 0.0)); in genRandom()
4291 if (exp >= minExp) in genRandom()
4301 quantum = deFloatLdExp(1.0f, minExp - fractionBits); in genRandom()
4329 const int minExp = format.getMinExp(); in genFixeds() local
4332 const float minQuantum = deFloatLdExp(1.0f, minExp - fractionBits); in genFixeds()
4333 const float minNormalized = deFloatLdExp(1.0f, minExp); in genFixeds()
/external/icu/icu4c/source/i18n/
Dnumber_skeletons.cpp830 int32_t minExp = 0; in parseExponentWidthOption() local
833 minExp++; in parseExponentWidthOption()
842 … macros.notation = static_cast<ScientificNotation&>(macros.notation).withMinExponentDigits(minExp); in parseExponentWidthOption()
Ddecimfmt.cpp812 int32_t minExp = useScientific ? 1 : -1; in setScientificNotation() local
813 if (fields->properties->minimumExponentDigits == minExp) { return; } in setScientificNotation()