7 writes to next
System.Core (7)
System\Collections\Generic\HashSet.cs (7)
300
m_slots[last].
next
= m_slots[i].next;
304
m_slots[i].
next
= m_freeList;
942
newSlots[newIndex].
next
= newBuckets[bucket] - 1;
1031
newSlots[i].
next
= newBuckets[bucket] - 1;
1079
m_slots[index].
next
= m_buckets[bucket] - 1;
1109
m_slots[index].
next
= m_buckets[bucket] - 1;
1352
m_slots[index].
next
= m_buckets[bucket] - 1;
9 references to next
System.Core (9)
System\Collections\Generic\HashSet.cs (9)
263
for (int i = m_buckets[hashCode % m_buckets.Length] - 1; i >= 0; i = m_slots[i].
next
) {
292
for (int i = m_buckets[bucket] - 1; i >= 0; last = i, i = m_slots[i].
next
) {
296
m_buckets[bucket] = m_slots[i].
next
+ 1;
300
m_slots[last].next = m_slots[i].
next
;
1054
for (int i = m_buckets[hashCode % m_buckets.Length] - 1; i >= 0; i = m_slots[i].
next
) {
1066
m_freeList = m_slots[index].
next
;
1221
for (int i = m_buckets[hashCode % m_buckets.Length] - 1; i >= 0; i = m_slots[i].
next
) {
1330
for (int i = m_buckets[hashCode % m_buckets.Length] - 1; i >= 0; i = m_slots[i].
next
) {
1339
m_freeList = m_slots[index].
next
;