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

  /libcore/ojluni/src/main/java/java/util/stream/
AbstractSpinedBuffer.java 70 protected int spineIndex;
101 return (spineIndex == 0) && (elementIndex == 0);
108 return (spineIndex == 0)
110 : priorElementCount[spineIndex] + elementIndex;
SpinedBuffer.java 65 * null. If spine is non-null, then spineIndex points to the current chunk
67 * arrays are always the same size, and for any i <= spineIndex,
115 return (spineIndex == 0)
117 : priorElementCount[spineIndex] + spine[spineIndex].length;
137 for (int i=spineIndex+1; targetSize > capacity; i++) {
162 // @@@ can further optimize by caching last seen spineIndex,
167 if (spineIndex == 0) {
177 for (int j=0; j <= spineIndex; j++)
194 if (spineIndex == 0
    [all...]

Completed in 71 milliseconds