2 writes to _pFirst
System.Private.CoreLib (2)
src\runtime\src\coreclr\nativeaot\Common\src\Internal\Runtime\MethodTable.cs (2)
1369
_pFirst
= pFirst;
1376
_pFirst
= (void*)((nint)pFirst | IsRelative);
3 references to _pFirst
System.Private.CoreLib (3)
src\runtime\src\coreclr\nativeaot\Common\src\Internal\Runtime\MethodTable.cs (3)
1383
if (((nint)
_pFirst
& IsRelative) != 0)
1384
return (((RelativePointer<MethodTable>*)((nint)
_pFirst
- IsRelative)) + index)->Value;
1386
return *((MethodTable**)
_pFirst
+ index);