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)
443
infoNew =
_hashTable
[info.GetHashCode() & (
_hashTable
.Length - 1)];
457
if (_sizeTable >=
_hashTable
.Length)
459
XPathNodeInfoAtom[] oldTable =
_hashTable
;
486
int idx = info.GetHashCode() & (
_hashTable
.Length - 1);
487
info.Next =
_hashTable
[idx];
488
_hashTable
[idx] = info;
500
for (int i = 0; i <
_hashTable
.Length; i++)
504
infoAtom =
_hashTable
[i];
508
if ((object)infoAtom != (object)
_hashTable
[i])