11 references to Count
System.Linq.Parallel (11)
System\Linq\Parallel\Partitioning\HashRepartitionEnumerator.cs (2)
147
if (++mutables._currentIndex < mutables._currentBuffer.
Count
)
158
Debug.Assert(mutables._currentBuffer == null || mutables._currentBuffer.
Count
> 0);
System\Linq\Parallel\Partitioning\OrderedHashRepartitionEnumerator.cs (4)
147
if (++mutables._currentIndex < mutables._currentBuffer.
Count
)
161
Debug.Assert(mutables._currentBuffer == null || mutables._currentBuffer.
Count
> 0);
163
Debug.Assert(mutables._currentBuffer == null || mutables._currentBuffer.
Count
== mutables._currentKeyBuffer!.
Count
);
System\Linq\Parallel\QueryOperators\Binary\HashJoinQueryOperatorEnumerator.cs (3)
109
if (currentRightChunk != null && mutables._currentRightMatchesIndex == currentRightChunk.
Count
)
139
Debug.Assert(mutables._currentRightMatches == null || mutables._currentRightMatches.
Count
> 0,
165
Debug.Assert(0 <= mutables._currentRightMatchesIndex && mutables._currentRightMatchesIndex < mutables._currentRightMatches.
Count
);
System\Linq\Parallel\QueryOperators\Unary\GroupByQueryOperator.cs (2)
786
int count = _values.
Count
;
790
count += curChunk.
Count
;