Home
last modified time | relevance | path

Searched refs:MIN_ (Results 1 – 3 of 3) sorted by relevance

/external/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/
DUCharacterPerf.java35 MIN_ = Character.MIN_VALUE; in setup()
38 MIN_ = Integer.parseInt(args[0], 16); in setup()
49 for (int ch = MIN_; ch < MAX_; ch ++) { in testDigit()
55 return MAX_ - MIN_ + 1; in testDigit()
64 for (char ch = (char)MIN_; ch < (char)MAX_; ch ++) {
70 return MAX_ - MIN_ + 1;
79 for (int ch = MIN_; ch < MAX_; ch ++) {
85 return MAX_ - MIN_ + 1;
94 for (char ch = (char)MIN_; ch < (char)MAX_; ch ++) {
100 return MAX_ - MIN_ + 1;
[all …]
/external/icu/icu4c/source/test/perf/charperf/
Dcharperf.cpp75 MIN_ = 0; in CharPerformanceTest()
86 MIN_ = atoi(options[MIN_OPTION_].value); in CharPerformanceTest()
133 return new CharPerfFunction(isAlpha, MIN_, MAX_); in TestIsAlpha()
138 return new CharPerfFunction(isUpper, MIN_, MAX_); in TestIsUpper()
143 return new CharPerfFunction(isLower, MIN_, MAX_); in TestIsLower()
148 return new CharPerfFunction(isDigit, MIN_, MAX_); in TestIsDigit()
153 return new CharPerfFunction(isSpace, MIN_, MAX_); in TestIsSpace()
158 return new CharPerfFunction(isAlphaNumeric, MIN_, MAX_); in TestIsAlphaNumeric()
168 return new CharPerfFunction(isPrint, MIN_, MAX_); in TestIsPrint()
173 return new CharPerfFunction(isControl, MIN_, MAX_); in TestIsControl()
[all …]
Dcharperf.h31 for (UChar32 i = MIN_; i < MAX_; i ++) { in call()
38 return MAX_ - MIN_; in getOperationsPerIteration()
43 MIN_ = min; in CharPerfFunction()
49 UChar32 MIN_; variable
60 for (wchar_t i = MIN_; i < MAX_; i ++) { in call()
67 return MAX_ - MIN_; in getOperationsPerIteration()
73 MIN_ = min; in StdLibCharPerfFunction()
83 wchar_t MIN_; variable
119 UChar32 MIN_;