2 writes to _hashTable
System.Private.Xml (2)
System\Xml\Cache\XPathNodeInfoAtom.cs (2)
400_hashTable = new XPathNodeInfoAtom[DefaultTableSize]; 463_hashTable = new XPathNodeInfoAtom[oldTable.Length * 2];
10 references to _hashTable
System.Private.Xml (10)
System\Xml\Cache\XPathNodeInfoAtom.cs (10)
446infoNew = _hashTable[info.GetHashCode() & (_hashTable.Length - 1)]; 460if (_sizeTable >= _hashTable.Length) 462XPathNodeInfoAtom[] oldTable = _hashTable; 489int idx = info.GetHashCode() & (_hashTable.Length - 1); 490info.Next = _hashTable[idx]; 491_hashTable[idx] = info; 503for (int i = 0; i < _hashTable.Length; i++) 507infoAtom = _hashTable[i]; 511if ((object)infoAtom != (object)_hashTable[i])