1 write to m_count
System.Core (1)
System\Linq\Parallel\QueryOperators\Unary\TakeOrSkipQueryOperator.cs (1)
57m_count = count;
6 references to m_count
System.Core (6)
System\Linq\Parallel\QueryOperators\Unary\TakeOrSkipQueryOperator.cs (6)
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 320return Child.AsSequentialQuery(token).Take(m_count); 324return wrappedChild.Skip(m_count); 376return Math.Min(m_childCount, m_takeOrSkipOp.m_count); 380return Math.Max(m_childCount - m_takeOrSkipOp.m_count, 0); 397return m_childQueryResults.GetElement(m_takeOrSkipOp.m_count + index);