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

/libcore/luni/src/main/java/java/util/
H A DComparableTimSort.java428 int k = gallopRight((Comparable<Object>) a[base2], a, base1, len1, 0);
529 * key, gallopRight returns the index after the rightmost equal element.
539 private static int gallopRight(Comparable<Object> key, Object[] a, method in class:ComparableTimSort
672 count1 = gallopRight((Comparable) a[cursor2], tmp, cursor1, len1, 0);
791 count1 = len1 - gallopRight((Comparable) tmp[cursor2], a, base1, len1, len1 - 1);
H A DTimSort.java461 int k = gallopRight(a[base2], a, base1, len1, 0, c);
561 * key, gallopRight returns the index after the rightmost equal element.
572 private static <T> int gallopRight(T key, T[] a, int base, int len, method in class:TimSort
705 count1 = gallopRight(a[cursor2], tmp, cursor1, len1, 0, c);
824 count1 = len1 - gallopRight(tmp[cursor2], a, base1, len1, len1 - 1, c);

Completed in 67 milliseconds