1 instantiation of SharedEntryValue
Microsoft.CodeAnalysis (1)
InternalUtilities\TextKeyedCache.cs (1)
187var e = new SharedEntryValue(text, item);
8 references to SharedEntryValue
Microsoft.CodeAnalysis (8)
InternalUtilities\TextKeyedCache.cs (8)
63private static readonly (int HashCode, SharedEntryValue Entry)[] s_sharedTable = new (int HashCode, SharedEntryValue Entry)[SharedSize]; 67private readonly (int HashCode, SharedEntryValue Entry)[] _sharedTableInst = s_sharedTable; 131SharedEntryValue? e = FindSharedEntry(chars, start, len, hashCode); 146private SharedEntryValue? FindSharedEntry(char[] chars, int start, int len, int hashCode) 151SharedEntryValue? e = null; 187var e = new SharedEntryValue(text, item); 197private void AddSharedEntry(int hashCode, SharedEntryValue e)