Searched refs:gallopRight (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/java/util/
H A DComparableTimSort.java432 int k = gallopRight((Comparable<Object>) a[base2], a, base1, len1, 0);
533 * key, gallopRight returns the index after the rightmost equal element.
543 private static int gallopRight(Comparable<Object> key, Object[] a, method in class:ComparableTimSort
676 count1 = gallopRight((Comparable) a[cursor2], tmp, cursor1, len1, 0);
795 count1 = len1 - gallopRight((Comparable) tmp[cursor2], a, base1, len1, len1 - 1);
H A DTimSort.java465 int k = gallopRight(a[base2], a, base1, len1, 0, c);
565 * key, gallopRight returns the index after the rightmost equal element.
576 private static <T> int gallopRight(T key, T[] a, int base, int len, method in class:TimSort
709 count1 = gallopRight(a[cursor2], tmp, cursor1, len1, 0, c);
828 count1 = len1 - gallopRight(tmp[cursor2], a, base1, len1, len1 - 1, c);

Completed in 58 milliseconds