4 writes to next
System.Core (4)
System\Linq\Parallel\Utils\HashLookup.cs (4)
97slots[last].next = slots[i].next; 102slots[i].next = freeList; 150slots[index].next = buckets[bucket] - 1; 166newSlots[i].next = newBuckets[bucket] - 1;
5 references to next
System.Core (5)
System\Linq\Parallel\Utils\HashLookup.cs (5)
87for (int i = buckets[bucket] - 1; i >= 0; last = i, i = slots[i].next) 93buckets[bucket] = slots[i].next + 1; 97slots[last].next = slots[i].next; 114for (int i = buckets[hashCode % buckets.Length] - 1; i >= 0; i = slots[i].next) 137freeList = slots[index].next;