8 instantiations of BitHelper
Microsoft.CodeAnalysis (8)
src\Dependencies\Collections\Segmented\SegmentedHashSet`1.cs (8)
1181? new BitHelper(span.Slice(0, intArrayLength), clear: true) 1182: new BitHelper(new int[intArrayLength], clear: false); 1249? new BitHelper(itemsToRemoveSpan.Slice(0, intArrayLength), clear: true) 1250: new BitHelper(new int[intArrayLength], clear: false); 1254? new BitHelper(itemsAddedFromOtherSpan.Slice(0, intArrayLength), clear: true) 1255: new BitHelper(new int[intArrayLength], clear: false); 1336? new BitHelper(span.Slice(0, intArrayLength), clear: true) 1337: new BitHelper(new int[intArrayLength], clear: false);
7 references to BitHelper
Microsoft.CodeAnalysis (7)
src\Dependencies\Collections\Segmented\SegmentedHashSet`1.cs (7)
1177int intArrayLength = BitHelper.ToIntArrayLength(originalCount); 1180var bitHelper = intArrayLength <= StackAllocThreshold 1245int intArrayLength = BitHelper.ToIntArrayLength(originalCount); 1248var itemsToRemove = intArrayLength <= StackAllocThreshold / 2 1253var itemsAddedFromOther = intArrayLength <= StackAllocThreshold / 2 1332int intArrayLength = BitHelper.ToIntArrayLength(originalCount); 1335var bitHelper = intArrayLength <= StackAllocThreshold