6 references to ObjectPool
Test.Utilities (6)
ArrayBuilder.cs (1)
365pool = new ObjectPool<ArrayBuilder<T>>(() => new ArrayBuilder<T>(pool), size);
ObjectPool.cs (1)
110: this(factory, Environment.ProcessorCount * 2)
PooledConcurrentDictionary.cs (1)
55pool = new ObjectPool<PooledConcurrentDictionary<K, V>>(() =>
PooledDictionary.cs (1)
87pool = new ObjectPool<PooledDictionary<K, V>>(() => new PooledDictionary<K, V>(pool, keyComparer), 128);
PooledHashSet.cs (1)
68pool = new ObjectPool<PooledHashSet<T>>(() => new PooledHashSet<T>(pool, comparer), 128);
PooledSortedSet.cs (1)
49pool = new ObjectPool<PooledSortedSet<T>>(