5 writes to m_partitions
System.Core (5)
System\Linq\Parallel\Partitioning\OrderedHashRepartitionStream.cs (1)
26m_partitions =
System\Linq\Parallel\Partitioning\PartitionedDataSource.cs (2)
146m_partitions = partitions; 152m_partitions = MakePartitions(source.GetEnumerator(), partitionCount);
System\Linq\Parallel\Partitioning\PartitionedStream.cs (1)
45m_partitions = new QueryOperatorEnumerator<TElement, TKey>[partitionCount];
System\Linq\Parallel\Partitioning\UnorderedHashRepartitionStream.cs (1)
33m_partitions = new HashRepartitionEnumerator<TInputOutput, THashKey, TIgnoreKey>[inputStream.PartitionCount];
10 references to m_partitions
System.Core (10)
System\Linq\Parallel\Partitioning\OrderedHashRepartitionStream.cs (1)
39m_partitions[i] = new OrderedHashRepartitionEnumerator<TInputOutput, THashKey, TOrderKey>(
System\Linq\Parallel\Partitioning\PartitionedStream.cs (8)
61Contract.Assert(m_partitions != null); 62Contract.Assert(0 <= index && index < m_partitions.Length, "index out of bounds"); 63return m_partitions[index]; 67Contract.Assert(m_partitions != null); 69Contract.Assert(0 <= index && index < m_partitions.Length, "index out of bounds"); 70m_partitions[index] = value; 82Contract.Assert(m_partitions != null); 83return m_partitions.Length;
System\Linq\Parallel\Partitioning\UnorderedHashRepartitionStream.cs (1)
44m_partitions[i] = new HashRepartitionEnumerator<TInputOutput, THashKey, TIgnoreKey>(