3 instantiations of Container
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\ConditionalWeakTable.cs (3)
42
_container = new
Container
(this);
196
_container = new
Container
(this);
874
var newContainer = new
Container
(_parent!, newBuckets, newEntries, newEntriesIndex);
7 references to Container
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\ConditionalWeakTable.cs (7)
36
private volatile
Container
_container; // The actual storage for the table; swapped out as the table grows.
364
Container
c = _container;
455
Container
c = table._container;
503
Container
c = _container;
753
internal
Container
Resize()
794
internal
Container
Resize(int newSize)
874
var
newContainer = new Container(_parent!, newBuckets, newEntries, newEntriesIndex);