7 writes to _budget
System.Collections.Concurrent (7)
System\Collections\Concurrent\ConcurrentDictionary.cs (7)
229
_budget
= buckets.Length / locks.Length;
352
_budget
= tables._buckets.Length / tables._locks.Length;
727
_budget
= Math.Max(1, newTables._buckets.Length / newTables._locks.Length);
1975
_budget
= 2 * _budget;
1978
_budget
= int.MaxValue;
1995
_budget
= int.MaxValue;
2042
_budget
= Math.Max(1, newBuckets.Length / newLocks.Length);
5 references to _budget
System.Collections.Concurrent (5)
System\Collections\Concurrent\ConcurrentDictionary.cs (5)
349
if (
_budget
== 0)
1015
if (tables._countPerLock[lockNo] >
_budget
)
1975
_budget = 2 *
_budget
;
1976
if (
_budget
< 0)
2486
if (tables._countPerLock[lockNo] > Dictionary.
_budget
)