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

/openjdk7/jdk/src/share/classes/java/util/
H A DComparableTimSort.java443 len2 = gallopLeft((Comparable<Object>) a[base1 + len1 - 1], a,
473 private static int gallopLeft(Comparable<Object> key, Object[] a, method in class:ComparableTimSort
532 * Like gallopLeft, except that if the range contains an element equal to
689 count2 = gallopLeft((Comparable) tmp[cursor1], a, cursor2, len2, 0);
808 count2 = len2 - gallopLeft((Comparable) a[cursor1], tmp, 0, len2, len2 - 1);
H A DTimSort.java476 len2 = gallopLeft(a[base1 + len1 - 1], a, base2, len2, len2 - 1, c);
506 private static <T> int gallopLeft(T key, T[] a, int base, int len, int hint, method in class:TimSort
564 * Like gallopLeft, except that if the range contains an element equal to
722 count2 = gallopLeft(tmp[cursor1], a, cursor2, len2, 0, c);
841 count2 = len2 - gallopLeft(a[cursor1], tmp, 0, len2, len2 - 1, c);

Completed in 33 milliseconds