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.java120 : priorElementCount[spineIndex] + spine[spineIndex].length; in capacity()
127 priorElementCount = new long[MIN_SPINE_SIZE]; in inflateSpine()
144 priorElementCount = Arrays.copyOf(priorElementCount, newSpineSize); in ensureCapacity()
148 priorElementCount[i] = priorElementCount[i-1] + spine[i-1].length; in ensureCapacity()
181 if (index < priorElementCount[j] + spine[j].length) in get()
182 return spine[j][((int) (index - priorElementCount[j]))]; in get()
230 priorElementCount = null; in clear()
320 priorElementCount[lastSpineIndex] + lastSpineElementFence - in spliterator()
322 priorElementCount[splSpineIndex] - splElementIndex; in spliterator()
490 : priorElementCount[spineIndex] + arrayLength(spine[spineIndex]); in capacity()
[all …]
DAbstractSpinedBuffer.java75 protected long[] priorElementCount; field in AbstractSpinedBuffer
110 : priorElementCount[spineIndex] + elementIndex; in count()