Home
last modified time | relevance | path

Searched refs:tmpBase (Results 1 – 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/java/util/
DComparableTimSort.java95 private int tmpBase; // base of tmp array slice field in ComparableTimSort
129 tmpBase = 0; in ComparableTimSort()
134 tmpBase = workBase; in ComparableTimSort()
659 int cursor1 = tmpBase; // Indexes into tmp array
775 int tmpBase = this.tmpBase;
776 System.arraycopy(a, base2, tmp, tmpBase, len2);
779 int cursor2 = tmpBase + len2 - 1; // Indexes into tmp array
785 System.arraycopy(tmp, tmpBase, a, dest - (len2 - 1), len2);
843 count2 = len2 - gallopLeft((Comparable) a[cursor1], tmp, tmpBase, len2, len2 - 1);
875 System.arraycopy(tmp, tmpBase, a, dest - (len2 - 1), len2);
[all …]
DTimSort.java120 private int tmpBase; // base of tmp array slice field in TimSort
159 tmpBase = 0; in TimSort()
164 tmpBase = workBase; in TimSort()
691 int cursor1 = tmpBase; // Indexes into tmp array
807 int tmpBase = this.tmpBase;
808 System.arraycopy(a, base2, tmp, tmpBase, len2);
811 int cursor2 = tmpBase + len2 - 1; // Indexes into tmp array
817 System.arraycopy(tmp, tmpBase, a, dest - (len2 - 1), len2);
876 count2 = len2 - gallopLeft(a[cursor1], tmp, tmpBase, len2, len2 - 1, c);
908 System.arraycopy(tmp, tmpBase, a, dest - (len2 - 1), len2);
[all …]