1 write to _node
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Collections\Concurrent\ConcurrentDictionary.cs (1)
2253
return ref buckets[bucketNo].
_node
;
9 references to _node
System.Private.CoreLib (9)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Collections\Concurrent\ConcurrentDictionary.cs (9)
811
for (Node? current = bucket.
_node
; current is not null; current = current._next)
826
for (Node? current = bucket.
_node
; current is not null; current = current._next)
841
for (Node? current = bucket.
_node
; current is not null; current = current._next)
910
_node = buckets[i].
_node
;
2022
Node? current = bucket.
_node
;
2141
for (Node? node = bucket.
_node
; node is not null; node = node._next)
2177
for (Node? node = bucket.
_node
; node is not null; node = node._next)
2229
return buckets[HashHelpers.FastMod((uint)hashcode, (uint)buckets.Length, tables._fastModBucketsMultiplier)].
_node
;
2233
return buckets[(uint)hashcode % (uint)buckets.Length].
_node
;