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

/libcore/luni/src/main/java/java/util/
H A DComparableTimSort.java87 * runBase[i] + runLen[i] == runBase[i + 1]
93 private final int[] runBase; field in class:ComparableTimSort
131 runBase = new int[stackLen];
344 * @param runBase index of the first element in the run
347 private void pushRun(int runBase, int runLen) { argument
348 this.runBase[stackSize] = runBase;
405 int base1 = runBase[i];
407 int base2 = runBase[
[all...]
H A DTimSort.java112 * runBase[i] + runLen[i] == runBase[i + 1]
118 private final int[] runBase; field in class:TimSort
158 runBase = new int[stackLen];
378 * @param runBase index of the first element in the run
381 private void pushRun(int runBase, int runLen) { argument
382 this.runBase[stackSize] = runBase;
438 int base1 = runBase[i];
440 int base2 = runBase[
[all...]

Completed in 314 milliseconds