5 writes to next
Microsoft.Build (5)
Collections\RetrievableEntryHashSet\RetrievableEntryHashSet.cs (5)
434
_slots[last].
next
= _slots[i].next;
438
_slots[i].
next
= _freeList;
736
newSlots[newIndex].
next
= newBuckets[bucket] - 1;
798
newSlots[i].
next
= newBuckets[bucket] - 1;
857
_slots[index].
next
= _buckets[bucket] - 1;
6 references to next
Microsoft.Build (6)
Collections\RetrievableEntryHashSet\RetrievableEntryHashSet.cs (6)
369
for (int i = _buckets[hashCode % _buckets.Length] - 1; i >= 0; i = _slots[i].
next
)
422
for (int i = _buckets[bucket] - 1; i >= 0; last = i, i = _slots[i].
next
)
429
_buckets[bucket] = _slots[i].
next
+ 1;
434
_slots[last].next = _slots[i].
next
;
827
for (int i = _buckets[hashCode % _buckets.Length] - 1; i >= 0; i = _slots[i].
next
)
842
_freeList = _slots[index].
next
;