5 writes to _freeList
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\Dictionary.cs (5)
291
_freeList
= -1;
495
_freeList
= -1;
603
_freeList
= StartOfFreeList - entries[_freeList].next;
918
dictionary.
_freeList
= i;
1013
dictionary.
_freeList
= StartOfFreeList - entries[dictionary._freeList].next;
8 references to _freeList
System.Private.CoreLib (8)
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\Dictionary.cs (8)
601
index =
_freeList
;
602
Debug.Assert((StartOfFreeList - entries[
_freeList
].next) >= -1, "shouldn't overflow because `next` cannot underflow");
603
_freeList = StartOfFreeList - entries[
_freeList
].next;
905
Debug.Assert((StartOfFreeList - dictionary.
_freeList
) < 0, "shouldn't underflow because max hashtable length is MaxPrimeArrayLength = 0x7FEFFFFD(2146435069) _freelist underflow threshold 2147483646");
906
entry.next = StartOfFreeList - dictionary.
_freeList
;
1011
index = dictionary.
_freeList
;
1012
Debug.Assert((StartOfFreeList - entries[dictionary.
_freeList
].next) >= -1, "shouldn't overflow because `next` cannot underflow");
1013
dictionary._freeList = StartOfFreeList - entries[dictionary.
_freeList
].next;