2 writes to m_currentRightMatches
System.Core (2)
System\Linq\Parallel\QueryOperators\Binary\HashJoinQueryOperatorEnumerator.cs (2)
177
currentRightChunk = mutables.
m_currentRightMatches
= currentRightChunk.Next;
206
mutables.
m_currentRightMatches
= matchValue.Second;
7 references to m_currentRightMatches
System.Core (7)
System\Linq\Parallel\QueryOperators\Binary\HashJoinQueryOperatorEnumerator.cs (7)
174
ListChunk<TRightInput> currentRightChunk = mutables.
m_currentRightMatches
;
181
if (mutables.
m_currentRightMatches
== null)
207
Contract.Assert(mutables.
m_currentRightMatches
== null || mutables.
m_currentRightMatches
.Count > 0,
250
Contract.Assert(mutables.
m_currentRightMatches
!= null);
251
Contract.Assert(0 <= mutables.m_currentRightMatchesIndex && mutables.m_currentRightMatchesIndex < mutables.
m_currentRightMatches
.Count);
254
mutables.m_currentLeft, mutables.
m_currentRightMatches
.m_chunk[mutables.m_currentRightMatchesIndex]);