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