9 references to ListChunk
System.Linq.Parallel (9)
System\Linq\Parallel\Partitioning\HashRepartitionEnumerator.cs (1)
241
privateBuffers[destinationIndex] = buffer = new
ListChunk
<Pair<TInputOutput, THashKey>>(INITIAL_PRIVATE_BUFFER_SIZE);
System\Linq\Parallel\Partitioning\OrderedHashRepartitionEnumerator.cs (2)
250
privateBuffers[destinationIndex] = buffer = new
ListChunk
<Pair<TInputOutput, THashKey>>(INITIAL_PRIVATE_BUFFER_SIZE);
251
privateKeyBuffers[destinationIndex] = keyBuffer = new
ListChunk
<TOrderKey>(INITIAL_PRIVATE_BUFFER_SIZE);
System\Linq\Parallel\QueryOperators\Binary\GroupJoinQueryOperator.cs (1)
263
currentValue = new
ListChunk
<TElement>(INITIAL_CHUNK_SIZE);
System\Linq\Parallel\QueryOperators\Binary\HashJoinQueryOperatorEnumerator.cs (1)
376
_tail = new
ListChunk
<Pair<TElement, TOrderKey>>(INITIAL_CHUNK_SIZE);
System\Linq\Parallel\QueryOperators\Unary\GroupByQueryOperator.cs (3)
342
currentValue = new
ListChunk
<TSource>(INITIAL_CHUNK_SIZE);
404
currentValue = new
ListChunk
<TElement>(INITIAL_CHUNK_SIZE);
742
_values = new
ListChunk
<Pair<TOrderKey, TElement>>(INITIAL_CHUNK_SIZE);
System\Linq\Parallel\Utils\ListChunk.cs (1)
46
_tailChunk = new
ListChunk
<TInputOutput>(tail._chunkCount * 2);