2 instantiations of FixedMaxHeap
System.Core (2)
System\Linq\Parallel\Merging\OrderPreservingPipeliningMergeHelper.cs (1)
254m_producerHeap = new FixedMaxHeap<Producer<TKey>>(partitionCount, producerComparer);
System\Linq\Parallel\QueryOperators\Unary\TakeOrSkipQueryOperator.cs (1)
112FixedMaxHeap<TKey> sharedIndices = new FixedMaxHeap<TKey>(m_count, inputStream.KeyComparer); // an array used to track the sequence of indices leading up to the Nth index
4 references to FixedMaxHeap
System.Core (4)
System\Linq\Parallel\Merging\OrderPreservingPipeliningMergeHelper.cs (1)
220private readonly FixedMaxHeap<Producer<TKey>> m_producerHeap;
System\Linq\Parallel\QueryOperators\Unary\TakeOrSkipQueryOperator.cs (3)
112FixedMaxHeap<TKey> sharedIndices = new FixedMaxHeap<TKey>(m_count, inputStream.KeyComparer); // an array used to track the sequence of indices leading up to the Nth index 160private readonly FixedMaxHeap<TKey> m_sharedIndices; // The indices shared among partitions. 173FixedMaxHeap<TKey> sharedIndices, CountdownEvent sharedBarrier, CancellationToken cancellationToken,