8 instantiations of BitHelper
System.Private.CoreLib (8)
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\HashSet.cs (8)
1592new BitHelper(span.Slice(0, intArrayLength), clear: true) : 1593new BitHelper(new int[intArrayLength], clear: false); 1660new BitHelper(itemsToRemoveSpan.Slice(0, intArrayLength), clear: true) : 1661new BitHelper(new int[intArrayLength], clear: false); 1665new BitHelper(itemsAddedFromOtherSpan.Slice(0, intArrayLength), clear: true) : 1666new BitHelper(new int[intArrayLength], clear: false); 1748new BitHelper(span.Slice(0, intArrayLength), clear: true) : 1749new BitHelper(new int[intArrayLength], clear: false);
7 references to BitHelper
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\HashSet.cs (7)
1588int intArrayLength = BitHelper.ToIntArrayLength(originalCount); 1591BitHelper bitHelper = (uint)intArrayLength <= StackAllocThreshold ? 1656int intArrayLength = BitHelper.ToIntArrayLength(originalCount); 1659BitHelper itemsToRemove = intArrayLength <= StackAllocThreshold / 2 ? 1664BitHelper itemsAddedFromOther = intArrayLength <= StackAllocThreshold / 2 ? 1744int intArrayLength = BitHelper.ToIntArrayLength(originalCount); 1747BitHelper bitHelper = intArrayLength <= StackAllocThreshold ?