Searched refs:MIN_ (Results 1 – 3 of 3) sorted by relevance
/external/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/ |
D | UCharacterPerf.java | 33 MIN_ = Character.MIN_VALUE; in setup() 36 MIN_ = Integer.parseInt(args[0], 16); in setup() 47 for (int ch = MIN_; ch < MAX_; ch ++) { in testDigit() 53 return MAX_ - MIN_ + 1; in testDigit() 62 for (char ch = (char)MIN_; ch < (char)MAX_; ch ++) { 68 return MAX_ - MIN_ + 1; 77 for (int ch = MIN_; ch < MAX_; ch ++) { 83 return MAX_ - MIN_ + 1; 92 for (char ch = (char)MIN_; ch < (char)MAX_; ch ++) { 98 return MAX_ - MIN_ + 1; [all …]
|
/external/icu/icu4c/source/test/perf/charperf/ |
D | charperf.cpp | 70 MIN_ = 0; in CharPerformanceTest() 81 MIN_ = atoi(options[MIN_OPTION_].value); in CharPerformanceTest() 128 return new CharPerfFunction(isAlpha, MIN_, MAX_); in TestIsAlpha() 133 return new CharPerfFunction(isUpper, MIN_, MAX_); in TestIsUpper() 138 return new CharPerfFunction(isLower, MIN_, MAX_); in TestIsLower() 143 return new CharPerfFunction(isDigit, MIN_, MAX_); in TestIsDigit() 148 return new CharPerfFunction(isSpace, MIN_, MAX_); in TestIsSpace() 153 return new CharPerfFunction(isAlphaNumeric, MIN_, MAX_); in TestIsAlphaNumeric() 163 return new CharPerfFunction(isPrint, MIN_, MAX_); in TestIsPrint() 168 return new CharPerfFunction(isControl, MIN_, MAX_); in TestIsControl() [all …]
|
D | charperf.h | 27 for (UChar32 i = MIN_; i < MAX_; i ++) { in call() 34 return MAX_ - MIN_; in getOperationsPerIteration() 39 MIN_ = min; in CharPerfFunction() 45 UChar32 MIN_; variable 56 for (wchar_t i = MIN_; i < MAX_; i ++) { in call() 63 return MAX_ - MIN_; in getOperationsPerIteration() 69 MIN_ = min; in StdLibCharPerfFunction() 79 wchar_t MIN_; variable 115 UChar32 MIN_;
|