2 writes to _hashTable
dotnet-svcutil-lib (2)
FrameworkFork\Microsoft.Xml\Xml\Cache\XPathNodeInfoAtom.cs (2)
390
_hashTable
= new XPathNodeInfoAtom[DefaultTableSize];
453
_hashTable
= new XPathNodeInfoAtom[oldTable.Length * 2];
10 references to _hashTable
dotnet-svcutil-lib (10)
FrameworkFork\Microsoft.Xml\Xml\Cache\XPathNodeInfoAtom.cs (10)
436
infoNew =
_hashTable
[info.GetHashCode() & (
_hashTable
.Length - 1)];
450
if (_sizeTable >=
_hashTable
.Length)
452
XPathNodeInfoAtom[] oldTable =
_hashTable
;
479
int idx = info.GetHashCode() & (
_hashTable
.Length - 1);
480
info.Next =
_hashTable
[idx];
481
_hashTable
[idx] = info;
493
for (int i = 0; i <
_hashTable
.Length; i++)
497
infoAtom =
_hashTable
[i];
501
if ((object)infoAtom != (object)
_hashTable
[i])