2 writes to _currentRightMatches
System.Linq.Parallel (2)
System\Linq\Parallel\QueryOperators\Binary\HashJoinQueryOperatorEnumerator.cs (2)
111mutables._currentRightMatches = currentRightChunk.Next; 138mutables._currentRightMatches = matchValue.Tail;
7 references to _currentRightMatches
System.Linq.Parallel (7)
System\Linq\Parallel\QueryOperators\Binary\HashJoinQueryOperatorEnumerator.cs (7)
108ListChunk<Pair<TRightInput, TRightKey>>? currentRightChunk = mutables._currentRightMatches; 115if (mutables._currentRightMatches == null) 139Debug.Assert(mutables._currentRightMatches == null || mutables._currentRightMatches.Count > 0, 164Debug.Assert(mutables._currentRightMatches != null); 165Debug.Assert(0 <= mutables._currentRightMatchesIndex && mutables._currentRightMatchesIndex < mutables._currentRightMatches.Count); 167Pair<TRightInput, TRightKey> rightMatch = mutables._currentRightMatches._chunk[mutables._currentRightMatchesIndex];