4 instantiations of Tables
mscorlib (4)
system\Collections\Concurrent\ConcurrentDictionary.cs (4)
349m_tables = new Tables(buckets, locks, countPerLock, comparer); 622Tables newTables = new Tables(new Node[DEFAULT_CAPACITY], m_tables.m_locks, new int[m_tables.m_countPerLock.Length], m_tables.m_comparer); 1927m_tables = new Tables(newBuckets, newLocks, newCountPerLock, newComparer); 2222m_tables = new Tables(buckets, locks, countPerLock, m_comparer);
9 references to Tables
mscorlib (9)
system\Collections\Concurrent\ConcurrentDictionary.cs (9)
86private volatile Tables m_tables; // Internal tables of the dictionary 429Tables tables = m_tables; 505Tables tables = m_tables; 555Tables tables = m_tables; 622Tables newTables = new Tables(new Node[DEFAULT_CAPACITY], m_tables.m_locks, new int[m_tables.m_countPerLock.Length], m_tables.m_comparer); 815Tables tables = m_tables; 1685Tables tables = m_tables; 1770private void GrowTable(Tables tables, IEqualityComparer<TKey> newComparer, bool regenerateHashKeys, int rehashCount) 2196Tables tables = m_tables;