5 writes to next
Microsoft.Build (5)
Collections\RetrievableEntryHashSet\RetrievableEntryHashSet.cs (5)
431
_slots[last].
next
= _slots[i].next;
435
_slots[i].
next
= _freeList;
733
newSlots[newIndex].
next
= newBuckets[bucket] - 1;
795
newSlots[i].
next
= newBuckets[bucket] - 1;
854
_slots[index].
next
= _buckets[bucket] - 1;
6 references to next
Microsoft.Build (6)
Collections\RetrievableEntryHashSet\RetrievableEntryHashSet.cs (6)
366
for (int i = _buckets[hashCode % _buckets.Length] - 1; i >= 0; i = _slots[i].
next
)
419
for (int i = _buckets[bucket] - 1; i >= 0; last = i, i = _slots[i].
next
)
426
_buckets[bucket] = _slots[i].
next
+ 1;
431
_slots[last].next = _slots[i].
next
;
824
for (int i = _buckets[hashCode % _buckets.Length] - 1; i >= 0; i = _slots[i].
next
)
839
_freeList = _slots[index].
next
;