Searched defs:curChunk (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/util/stream/
H A DSpinedBuffer.java70 * The curChunk pointer is always valid. The elementIndex is the index of
71 * the next element to be written in curChunk; this may be past the end of
72 * curChunk so we have to check before writing. When we inflate the spine
73 * array, curChunk becomes the first element in it. When we clear the
82 protected E[] curChunk; field in class:SpinedBuffer
99 curChunk = (E[]) new Object[1 << initialChunkPower];
108 curChunk = (E[]) new Object[1 << initialChunkPower];
116 ? curChunk.length
125 spine[0] = curChunk;
169 return curChunk[((in
441 T_ARR curChunk; field in class:SpinedBuffer.OfPrimitive
[all...]

Completed in 135 milliseconds