Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/util/stream/
DSpinedBuffer.java117 : priorElementCount[spineIndex] + spine[spineIndex].length; in capacity()
124 priorElementCount = new long[MIN_SPINE_SIZE]; in inflateSpine()
141 priorElementCount = Arrays.copyOf(priorElementCount, newSpineSize); in ensureCapacity()
145 priorElementCount[i] = priorElementCount[i-1] + spine[i-1].length; in ensureCapacity()
178 if (index < priorElementCount[j] + spine[j].length) in get()
179 return spine[j][((int) (index - priorElementCount[j]))]; in get()
227 priorElementCount = null; in clear()
317 priorElementCount[lastSpineIndex] + lastSpineElementFence - in spliterator()
319 priorElementCount[splSpineIndex] - splElementIndex; in spliterator()
488 : priorElementCount[spineIndex] + arrayLength(spine[spineIndex]); in capacity()
[all …]
DAbstractSpinedBuffer.java75 protected long[] priorElementCount; field in AbstractSpinedBuffer
110 : priorElementCount[spineIndex] + elementIndex; in count()