1 write to m_countPerLock
mscorlib (1)
system\Collections\Concurrent\ConcurrentDictionary.cs (1)
79m_countPerLock = countPerLock;
13 references to m_countPerLock
mscorlib (13)
system\Collections\Concurrent\ConcurrentDictionary.cs (13)
472tables.m_countPerLock[lockNo]--; 622Tables newTables = new Tables(new Node[DEFAULT_CAPACITY], m_tables.m_locks, new int[m_tables.m_countPerLock.Length], m_tables.m_comparer); 668count += m_tables.m_countPerLock[i]; 702count += m_tables.m_countPerLock[i]; 905tables.m_countPerLock[lockNo]++; 913if (tables.m_countPerLock[lockNo] > m_budget) 1036for (int i = 0; i < m_tables.m_countPerLock.Length; i++) 1038count += m_tables.m_countPerLock[i]; 1285for (int i = 0; i < m_tables.m_countPerLock.Length; i++) 1287if (m_tables.m_countPerLock[i] != 0) 1691count += tables.m_countPerLock[i]; 1801for (int i = 0; i < tables.m_countPerLock.Length; i++) 1803approxCount += tables.m_countPerLock[i];