1 write to m_reduceOperator
System.Core (1)
System\Linq\Parallel\QueryOperators\AssociativeAggregationOperator.cs (1)
262
m_reduceOperator
= reduceOperator;
7 references to m_reduceOperator
System.Core (7)
System\Linq\Parallel\QueryOperators\AssociativeAggregationOperator.cs (7)
277
Contract.Assert(
m_reduceOperator
!= null);
278
Contract.Assert(
m_reduceOperator
.m_intermediateReduce != null, "expected a compiled operator");
291
if (
m_reduceOperator
.m_seedIsSpecified)
294
accumulator =
m_reduceOperator
.m_seedFactory == null
295
?
m_reduceOperator
.m_seed
296
:
m_reduceOperator
.m_seedFactory();
320
accumulator =
m_reduceOperator
.m_intermediateReduce(accumulator, input);