HomeSort by relevance Sort by last modified time
    Searched refs:priorElementCount (Results 1 - 2 of 2) sorted by null

  /libcore/ojluni/src/main/java/java/util/stream/
AbstractSpinedBuffer.java 75 protected long[] priorElementCount;
110 : priorElementCount[spineIndex] + elementIndex;
SpinedBuffer.java 63 * so we try to avoid inflating the spine[] and priorElementCount[] arrays
66 * within the spine, otherwise it is zero. The spine and priorElementCount
68 * priorElementCount[i] is the sum of the sizes of all the prior chunks.
117 : priorElementCount[spineIndex] + spine[spineIndex].length;
124 priorElementCount = new long[MIN_SPINE_SIZE];
141 priorElementCount = Arrays.copyOf(priorElementCount, newSpineSize);
145 priorElementCount[i] = priorElementCount[i-1] + spine[i-1].length;
178 if (index < priorElementCount[j] + spine[j].length
    [all...]

Completed in 530 milliseconds