Home | History | Annotate | Download | only in stream

Lines Matching defs:CHUNK_SIZE

903         static final int CHUNK_SIZE = 1 << 7;
1032 // Optimistically traverse elements up to a threshold of CHUNK_SIZE
1034 sb = new ArrayBuffer.OfRef<>(CHUNK_SIZE);
1038 do { } while (s.tryAdvance(sb) && ++permitsRequested < CHUNK_SIZE);
1105 // Optimistically traverse elements up to a threshold of CHUNK_SIZE
1107 sb = bufferCreate(CHUNK_SIZE);
1113 do { } while (s.tryAdvance(sbc) && ++permitsRequested < CHUNK_SIZE);