2 writes to _hashTable
System.Private.Xml (2)
System\Xml\Cache\XPathNodeInfoAtom.cs (2)
397_hashTable = new XPathNodeInfoAtom[DefaultTableSize]; 460_hashTable = new XPathNodeInfoAtom[oldTable.Length * 2];
10 references to _hashTable
System.Private.Xml (10)
System\Xml\Cache\XPathNodeInfoAtom.cs (10)
443infoNew = _hashTable[info.GetHashCode() & (_hashTable.Length - 1)]; 457if (_sizeTable >= _hashTable.Length) 459XPathNodeInfoAtom[] oldTable = _hashTable; 486int idx = info.GetHashCode() & (_hashTable.Length - 1); 487info.Next = _hashTable[idx]; 488_hashTable[idx] = info; 500for (int i = 0; i < _hashTable.Length; i++) 504infoAtom = _hashTable[i]; 508if ((object)infoAtom != (object)_hashTable[i])