Searched defs:gallopLeft (Results 1 - 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/java/util/
H A DComparableTimSort.java473 len2 = gallopLeft((Comparable<Object>) a[base1 + len1 - 1], a,
503 private static int gallopLeft(Comparable<Object> key, Object[] a, method in class:ComparableTimSort
562 * Like gallopLeft, except that if the range contains an element equal to
719 count2 = gallopLeft((Comparable) tmp[cursor1], a, cursor2, len2, 0);
839 count2 = len2 - gallopLeft((Comparable) a[cursor1], tmp, tmpBase, len2, len2 - 1);
H A DTimSort.java507 len2 = gallopLeft(a[base1 + len1 - 1], a, base2, len2, len2 - 1, c);
537 private static <T> int gallopLeft(T key, T[] a, int base, int len, int hint, method in class:TimSort
595 * Like gallopLeft, except that if the range contains an element equal to
752 count2 = gallopLeft(tmp[cursor1], a, cursor2, len2, 0, c);
872 count2 = len2 - gallopLeft(a[cursor1], tmp, tmpBase, len2, len2 - 1, c);

Completed in 35 milliseconds