2 writes to _addressOfFirstCellSlot
System.Private.TypeLoader (2)
Internal\Runtime\TypeLoader\GenericDictionary.cs (2)
51
_addressOfFirstCellSlot
= MemoryHelpers.AllocateMemory(checked((int)(_cells.Length * IntPtr.Size)));
77
_addressOfFirstCellSlot
= (byte*)dictionaryWithHeader + IntPtr.Size;
6 references to _addressOfFirstCellSlot
System.Private.TypeLoader (6)
Internal\Runtime\TypeLoader\GenericDictionary.cs (6)
28
Debug.Assert(_cells.Length == 0 ||
_addressOfFirstCellSlot
!= null);
30
IntPtr* realCells = (IntPtr*)
_addressOfFirstCellSlot
;
46
Debug.Assert(
_addressOfFirstCellSlot
== null);
54
return (IntPtr)
_addressOfFirstCellSlot
;
66
Debug.Assert(
_addressOfFirstCellSlot
== null);
79
return (IntPtr)
_addressOfFirstCellSlot
;