1 instantiation of SharedEntryValue
Microsoft.CodeAnalysis (1)
InternalUtilities\TextKeyedCache.cs (1)
179var e = new SharedEntryValue(text, item);
8 references to SharedEntryValue
Microsoft.CodeAnalysis (8)
InternalUtilities\TextKeyedCache.cs (8)
55private static readonly (int HashCode, SharedEntryValue Entry)[] s_sharedTable = new (int HashCode, SharedEntryValue Entry)[SharedSize]; 59private readonly (int HashCode, SharedEntryValue Entry)[] _sharedTableInst = s_sharedTable; 123SharedEntryValue? e = FindSharedEntry(chars, start, len, hashCode); 138private SharedEntryValue? FindSharedEntry(char[] chars, int start, int len, int hashCode) 143SharedEntryValue? e = null; 179var e = new SharedEntryValue(text, item); 189private void AddSharedEntry(int hashCode, SharedEntryValue e)