8 references to ListChunk
System.Core (8)
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)
253privateBuffers[destinationIndex] = buffer = new ListChunk<Pair<TInputOutput, THashKey>>(INITIAL_PRIVATE_BUFFER_SIZE); 254privateKeyBuffers[destinationIndex] = keyBuffer = new ListChunk<TOrderKey>(INITIAL_PRIVATE_BUFFER_SIZE);
System\Linq\Parallel\QueryOperators\Binary\HashJoinQueryOperatorEnumerator.cs (2)
143currentValue.Second = new ListChunk<TRightInput>(INITIAL_CHUNK_SIZE); 155currentValue.Second = new ListChunk<TRightInput>(INITIAL_CHUNK_SIZE);
System\Linq\Parallel\QueryOperators\Unary\GroupByQueryOperator.cs (2)
350currentValue = new ListChunk<TSource>(INITIAL_CHUNK_SIZE); 414currentValue = new ListChunk<TElement>(INITIAL_CHUNK_SIZE);
System\Linq\Parallel\Utils\ListChunk.cs (1)
50m_tailChunk = new ListChunk<TInputOutput>(tail.m_chunkCount * 2);