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

/openjdk7/jdk/src/share/classes/java/util/
H A DComparableTimSort.java59 private static final int MIN_MERGE = 32; field in class:ComparableTimSort
129 * computation below must be changed if MIN_MERGE is decreased. See
130 * the MIN_MERGE declaration above for more information.
156 if (nRemaining < MIN_MERGE) {
325 * If n < MIN_MERGE, return n (it's too small to bother with fancy stuff).
326 * Else if n is an exact power of 2, return MIN_MERGE/2.
327 * Else return an int k, MIN_MERGE/2 <= k <= MIN_MERGE, such that n/k
338 while (n >= MIN_MERGE) {
H A DTimSort.java79 private static final int MIN_MERGE = 32; field in class:TimSort
156 * computation below must be changed if MIN_MERGE is decreased. See
157 * the MIN_MERGE declaration above for more information.
188 if (nRemaining < MIN_MERGE) {
359 * If n < MIN_MERGE, return n (it's too small to bother with fancy stuff).
360 * Else if n is an exact power of 2, return MIN_MERGE/2.
361 * Else return an int k, MIN_MERGE/2 <= k <= MIN_MERGE, such that n/k
372 while (n >= MIN_MERGE) {

Completed in 33 milliseconds