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)
446
infoNew =
_hashTable
[info.GetHashCode() & (
_hashTable
.Length - 1)];
460
if (_sizeTable >=
_hashTable
.Length)
462
XPathNodeInfoAtom[] oldTable =
_hashTable
;
489
int idx = info.GetHashCode() & (
_hashTable
.Length - 1);
490
info.Next =
_hashTable
[idx];
491
_hashTable
[idx] = info;
503
for (int i = 0; i <
_hashTable
.Length; i++)
507
infoAtom =
_hashTable
[i];
511
if ((object)infoAtom != (object)
_hashTable
[i])