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

/libcore/luni/src/main/java/java/util/
H A DComparableTimSort.java57 * often than MIN_GALLOP consecutive times.
59 private static final int MIN_GALLOP = 7; field in class:ComparableTimSort
63 * to MIN_GALLOP. The mergeLo and mergeHi methods nudge it higher for
66 private int minGallop = MIN_GALLOP;
698 } while (count1 >= MIN_GALLOP | count2 >= MIN_GALLOP);
817 } while (count1 >= MIN_GALLOP | count2 >= MIN_GALLOP);
H A DTimSort.java82 * often than MIN_GALLOP consecutive times.
84 private static final int MIN_GALLOP = 7; field in class:TimSort
88 * to MIN_GALLOP. The mergeLo and mergeHi methods nudge it higher for
91 private int minGallop = MIN_GALLOP;
731 } while (count1 >= MIN_GALLOP | count2 >= MIN_GALLOP);
850 } while (count1 >= MIN_GALLOP | count2 >= MIN_GALLOP);

Completed in 41 milliseconds