4 references to _initialCapacity
System.Private.CoreLib (4)
src\runtime\src\coreclr\nativeaot\Common\src\System\Collections\Concurrent\ConcurrentUnifierWKeyed.cs (4)
172
_buckets = new int[
_initialCapacity
];
173
for (int i = 0; i <
_initialCapacity
; i++)
175
_entries = new Entry[
_initialCapacity
];
260
if (estimatedLivePercentage < _growThreshold && (_entries.Length - estimatedNumLiveEntries) >
_initialCapacity
)