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