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