7 references to CastCacheEntry
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\CastCache.cs (7)
133
private static ref
CastCacheEntry
Element(ref int tableData, int index)
136
return ref Unsafe.Add(ref Unsafe.As<int,
CastCacheEntry
>(ref tableData), index + 1);
155
ref
CastCacheEntry
pEntry = ref Element(ref tableData, index);
224
table = new int[(size + 1) * sizeof(
CastCacheEntry
) / sizeof(int)];
235
table = new int[(size + 1) * sizeof(
CastCacheEntry
) / sizeof(int)];
278
ref
CastCacheEntry
pEntry = ref Element(ref tableData, index);
355
ref
CastCacheEntry
pEntry = ref Element(ref tableData, (bucket + (int)victim) & TableMask(ref tableData));