Home
last modified time | relevance | path

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

/external/llvm-project/libc/utils/FPUtil/
DManipulationFunctions.h132 int expLimit = FPBits<T>::maxExponent + MantissaWidth<T>::value + 1; in ldexp() local
133 if (exp > expLimit) in ldexp()
137 if (exp < -expLimit) in ldexp()
/external/icu/icu4c/source/test/intltest/
Dlocalematchertest.cpp523 int32_t expLimit = line.indexOf(u'|', start); in readTestCase() local
524 if (expLimit < 0) { in readTestCase()
528 toInvariant(line.tempSubStringBetween(start, expLimit).trim(), in readTestCase()
530 start = expLimit + 1; in readTestCase()
531 expLimit = line.indexOf(u'|', start); in readTestCase()
532 if (expLimit < 0) { in readTestCase()
536 toInvariant(line.tempSubStringBetween(start, expLimit).trim(), in readTestCase()
538 toInvariant(line.tempSubStringBetween(expLimit + 1, limit).trim(), in readTestCase()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DLocaleMatcherTest.java1002 int expLimit = line.indexOf('|', start); in readTestCases() local
1003 if (expLimit < 0) { in readTestCases()
1006 test.expMatch = line.substring(start, expLimit).trim(); in readTestCases()
1007 start = expLimit + 1; in readTestCases()
1008 expLimit = line.indexOf('|', start); in readTestCases()
1009 if (expLimit < 0) { in readTestCases()
1012 test.expDesired = line.substring(start, expLimit).trim(); in readTestCases()
1013 test.expCombined = line.substring(expLimit + 1, limit).trim(); in readTestCases()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
DLocaleMatcherTest.java1005 int expLimit = line.indexOf('|', start); in readTestCases() local
1006 if (expLimit < 0) { in readTestCases()
1009 test.expMatch = line.substring(start, expLimit).trim(); in readTestCases()
1010 start = expLimit + 1; in readTestCases()
1011 expLimit = line.indexOf('|', start); in readTestCases()
1012 if (expLimit < 0) { in readTestCases()
1015 test.expDesired = line.substring(start, expLimit).trim(); in readTestCases()
1016 test.expCombined = line.substring(expLimit + 1, limit).trim(); in readTestCases()