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