3 writes to m_nextChunkMaxSize
System.Core (3)
System\Linq\Parallel\Partitioning\PartitionedDataSource.cs (3)
593m_nextChunkMaxSize = 1; // We start the chunk size at 1 and grow it later. 713mutables.m_nextChunkMaxSize = mutables.m_nextChunkMaxSize * 2; 716mutables.m_nextChunkMaxSize = chunkBuffer.Length;
6 references to m_nextChunkMaxSize
System.Core (6)
System\Linq\Parallel\Partitioning\PartitionedDataSource.cs (6)
666Contract.Assert(0 <= mutables.m_nextChunkMaxSize && mutables.m_nextChunkMaxSize <= chunkBuffer.Length); 678for (; i < mutables.m_nextChunkMaxSize && m_source.MoveNext(); i++) 709if (mutables.m_nextChunkMaxSize < chunkBuffer.Length) 713mutables.m_nextChunkMaxSize = mutables.m_nextChunkMaxSize * 2; 714if (mutables.m_nextChunkMaxSize > chunkBuffer.Length)