2 writes to hashTable
System.Xml (2)
System\Xml\Cache\XPathNodeInfoAtom.cs (2)
356
this.
hashTable
= new XPathNodeInfoAtom[DefaultTableSize];
412
this.
hashTable
= new XPathNodeInfoAtom[oldTable.Length * 2];
10 references to hashTable
System.Xml (10)
System\Xml\Cache\XPathNodeInfoAtom.cs (10)
398
infoNew = this.
hashTable
[info.GetHashCode() & (this.
hashTable
.Length - 1)];
410
if (this.sizeTable >= this.
hashTable
.Length) {
411
XPathNodeInfoAtom[] oldTable = this.
hashTable
;
435
int idx = info.GetHashCode() & (this.
hashTable
.Length - 1);
436
info.Next = this.
hashTable
[idx];
437
this.
hashTable
[idx] = info;
448
for (int i = 0; i < this.
hashTable
.Length; i++) {
451
infoAtom = this.
hashTable
[i];
454
if ((object) infoAtom != (object) this.
hashTable
[i])