1 instantiation of SharedEntryValue
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (1)
src\Compilers\Core\Portable\InternalUtilities\TextKeyedCache.cs (1)
191var e = new SharedEntryValue(text, item);
8 references to SharedEntryValue
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (8)
src\Compilers\Core\Portable\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; 129SharedEntryValue? e = FindSharedEntry(chars, hashCode); 144private SharedEntryValue? FindSharedEntry(ReadOnlySpan<char> chars, int hashCode) 149SharedEntryValue? e = null; 191var e = new SharedEntryValue(text, item); 201private void AddSharedEntry(int hashCode, SharedEntryValue e)