3 writes to _nextChunkMaxSize
System.Linq.Parallel (3)
System\Linq\Parallel\Partitioning\PartitionedDataSource.cs (3)
572_nextChunkMaxSize = 1; // We start the chunk size at 1 and grow it later. 688mutables._nextChunkMaxSize *= 2; 691mutables._nextChunkMaxSize = chunkBuffer.Length;
5 references to _nextChunkMaxSize
System.Linq.Parallel (5)
System\Linq\Parallel\Partitioning\PartitionedDataSource.cs (5)
641Debug.Assert(0 <= mutables._nextChunkMaxSize && mutables._nextChunkMaxSize <= chunkBuffer.Length); 653for (; i < mutables._nextChunkMaxSize && _source.MoveNext(); i++) 684if (mutables._nextChunkMaxSize < chunkBuffer.Length) 689if (mutables._nextChunkMaxSize > chunkBuffer.Length)