2 writes to next
System.Linq.Parallel (2)
System\Linq\Parallel\Utils\HashLookup.cs (2)
107
slots[index].
next
= buckets[bucket] - 1;
123
newSlots[i].
next
= newBuckets[bucket] - 1;
1 reference to next
System.Linq.Parallel (1)
System\Linq\Parallel\Utils\HashLookup.cs (1)
79
for (int i = buckets[(uint)hashCode % buckets.Length] - 1; i >= 0; i = slots[i].
next
)