8 instantiations of BitHelper
Microsoft.CodeAnalysis.Collections.Package (8)
SegmentedHashSet`1.cs (8)
1179? new BitHelper(span.Slice(0, intArrayLength), clear: true) 1180: new BitHelper(new int[intArrayLength], clear: false); 1247? new BitHelper(itemsToRemoveSpan.Slice(0, intArrayLength), clear: true) 1248: new BitHelper(new int[intArrayLength], clear: false); 1252? new BitHelper(itemsAddedFromOtherSpan.Slice(0, intArrayLength), clear: true) 1253: new BitHelper(new int[intArrayLength], clear: false); 1334? new BitHelper(span.Slice(0, intArrayLength), clear: true) 1335: new BitHelper(new int[intArrayLength], clear: false);
7 references to BitHelper
Microsoft.CodeAnalysis.Collections.Package (7)
SegmentedHashSet`1.cs (7)
1175int intArrayLength = BitHelper.ToIntArrayLength(originalCount); 1178var bitHelper = intArrayLength <= StackAllocThreshold 1243int intArrayLength = BitHelper.ToIntArrayLength(originalCount); 1246var itemsToRemove = intArrayLength <= StackAllocThreshold / 2 1251var itemsAddedFromOther = intArrayLength <= StackAllocThreshold / 2 1330int intArrayLength = BitHelper.ToIntArrayLength(originalCount); 1333var bitHelper = intArrayLength <= StackAllocThreshold