Searched refs:less (Results 1 – 6 of 6) sorted by relevance
/libcore/ojluni/src/main/java/java/util/ |
D | DualPivotQuicksort.java | 315 int less = left; // The index of the first element of center part in sort() local 339 while (a[++less] < pivot1); in sort() 362 for (int k = less - 1; ++k <= great; ) { in sort() 365 a[k] = a[less]; in sort() 370 a[less] = ak; in sort() 371 ++less; in sort() 379 a[k] = a[less]; in sort() 380 a[less] = a[great]; in sort() 381 ++less; in sort() 395 a[left] = a[less - 1]; a[less - 1] = pivot1; in sort() [all …]
|
/libcore/luni/src/test/java/libcore/libcore/util/ |
D | FP16Test.java | 268 assertTrue(FP16.less(NEGATIVE_INFINITY, POSITIVE_INFINITY)); in testLess() 269 assertTrue(FP16.less(MAX_VALUE, POSITIVE_INFINITY)); in testLess() 270 assertFalse(FP16.less(POSITIVE_INFINITY, MAX_VALUE)); in testLess() 271 assertFalse(FP16.less(LOWEST_VALUE, NEGATIVE_INFINITY)); in testLess() 272 assertTrue(FP16.less(NEGATIVE_INFINITY, LOWEST_VALUE)); in testLess() 273 assertFalse(FP16.less(POSITIVE_ZERO, NEGATIVE_ZERO)); in testLess() 274 assertFalse(FP16.less(NEGATIVE_ZERO, POSITIVE_ZERO)); in testLess() 275 assertFalse(FP16.less(NaN, toHalf(12.3f))); in testLess() 276 assertFalse(FP16.less(toHalf(12.3f), NaN)); in testLess() 277 assertTrue(FP16.less(MIN_VALUE, MIN_NORMAL)); in testLess() [all …]
|
/libcore/ojluni/src/main/java/java/text/ |
D | ChoiceFormat.java | 271 double less = previousDouble(choiceLimits[i]); in toPattern() local 273 double tryLess = Math.abs(Math.IEEEremainder(less, 1.0d)); in toPattern() 284 result.append(""+less); in toPattern()
|
/libcore/luni/src/main/java/libcore/util/ |
D | FP16.java | 209 if (less(x, y)) return -1; in compare() 439 public static boolean less(short x, short y) { in less() method in FP16
|
/libcore/tools/testmapping/ |
D | README | 2 tests to run on every change, chosen to run as many as possible in less than
|
/libcore/mmodules/core_platform_api/api/legacy_platform/ |
D | current-api.txt | 1048 method public static boolean less(short, short);
|