8 references to StackAllocThreshold
System.Private.CoreLib (8)
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\HashSet.cs (8)
1582Span<int> span = stackalloc int[StackAllocThreshold]; 1583BitHelper bitHelper = (uint)intArrayLength <= StackAllocThreshold ? 1650Span<int> itemsToRemoveSpan = stackalloc int[StackAllocThreshold / 2]; 1651BitHelper itemsToRemove = intArrayLength <= StackAllocThreshold / 2 ? 1655Span<int> itemsAddedFromOtherSpan = stackalloc int[StackAllocThreshold / 2]; 1656BitHelper itemsAddedFromOther = intArrayLength <= StackAllocThreshold / 2 ? 1738Span<int> span = stackalloc int[StackAllocThreshold]; 1739BitHelper bitHelper = intArrayLength <= StackAllocThreshold ?