1 write to _node
System.Collections.Concurrent (1)
System\Collections\Concurrent\ConcurrentDictionary.cs (1)
2283
return ref buckets[bucketNo].
_node
;
9 references to _node
System.Collections.Concurrent (9)
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)
919
_node = buckets[i].
_node
;
2047
Node? current = bucket.
_node
;
2171
for (Node? node = bucket.
_node
; node is not null; node = node._next)
2207
for (Node? node = bucket.
_node
; node is not null; node = node._next)
2259
return buckets[HashHelpers.FastMod((uint)hashcode, (uint)buckets.Length, tables._fastModBucketsMultiplier)].
_node
;
2263
return buckets[(uint)hashcode % (uint)buckets.Length].
_node
;