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

/openjdk7/jdk/src/share/classes/java/util/
H A DComparableTimSort.java68 * often than MIN_GALLOP consecutive times.
70 private static final int MIN_GALLOP = 7; field in class:ComparableTimSort
74 * to MIN_GALLOP. The mergeLo and mergeHi methods nudge it higher for
77 private int minGallop = MIN_GALLOP;
702 } while (count1 >= MIN_GALLOP | count2 >= MIN_GALLOP);
821 } while (count1 >= MIN_GALLOP | count2 >= MIN_GALLOP);
H A DTimSort.java93 * often than MIN_GALLOP consecutive times.
95 private static final int MIN_GALLOP = 7; field in class:TimSort
99 * to MIN_GALLOP. The mergeLo and mergeHi methods nudge it higher for
102 private int minGallop = MIN_GALLOP;
735 } while (count1 >= MIN_GALLOP | count2 >= MIN_GALLOP);
854 } while (count1 >= MIN_GALLOP | count2 >= MIN_GALLOP);

Completed in 51 milliseconds