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