9 references to ListChunk
System.Linq.Parallel (9)
System\Linq\Parallel\Partitioning\HashRepartitionEnumerator.cs (1)
241privateBuffers[destinationIndex] = buffer = new ListChunk<Pair<TInputOutput, THashKey>>(INITIAL_PRIVATE_BUFFER_SIZE);
System\Linq\Parallel\Partitioning\OrderedHashRepartitionEnumerator.cs (2)
250privateBuffers[destinationIndex] = buffer = new ListChunk<Pair<TInputOutput, THashKey>>(INITIAL_PRIVATE_BUFFER_SIZE); 251privateKeyBuffers[destinationIndex] = keyBuffer = new ListChunk<TOrderKey>(INITIAL_PRIVATE_BUFFER_SIZE);
System\Linq\Parallel\QueryOperators\Binary\GroupJoinQueryOperator.cs (1)
263currentValue = 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)
342currentValue = new ListChunk<TSource>(INITIAL_CHUNK_SIZE); 404currentValue = 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);