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

/openjdk7/jdk/src/share/classes/java/util/
H A DComparableTimSort.java98 * runBase[i] + runLen[i] == runBase[i + 1]
104 private final int[] runBase; field in class:ComparableTimSort
135 runBase = new int[stackLen];
348 * @param runBase index of the first element in the run
351 private void pushRun(int runBase, int runLen) { argument
352 this.runBase[stackSize] = runBase;
409 int base1 = runBase[i];
411 int base2 = runBase[
[all...]
H A DTimSort.java123 * runBase[i] + runLen[i] == runBase[i + 1]
129 private final int[] runBase; field in class:TimSort
162 runBase = new int[stackLen];
382 * @param runBase index of the first element in the run
385 private void pushRun(int runBase, int runLen) { argument
386 this.runBase[stackSize] = runBase;
442 int base1 = runBase[i];
444 int base2 = runBase[
[all...]

Completed in 30 milliseconds