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

/libcore/ojluni/src/main/java/java/util/
H A DComparableTimSort.java69 * often than MIN_GALLOP consecutive times.
71 private static final int MIN_GALLOP = 7; field in class:ComparableTimSort
75 * to MIN_GALLOP. The mergeLo and mergeHi methods nudge it higher for
78 private int minGallop = MIN_GALLOP;
728 } while (count1 >= MIN_GALLOP | count2 >= MIN_GALLOP);
848 } while (count1 >= MIN_GALLOP | count2 >= MIN_GALLOP);
H A DTimSort.java94 * often than MIN_GALLOP consecutive times.
96 private static final int MIN_GALLOP = 7; field in class:TimSort
100 * to MIN_GALLOP. The mergeLo and mergeHi methods nudge it higher for
103 private int minGallop = MIN_GALLOP;
761 } while (count1 >= MIN_GALLOP | count2 >= MIN_GALLOP);
881 } while (count1 >= MIN_GALLOP | count2 >= MIN_GALLOP);

Completed in 42 milliseconds