8 references to StackAllocThreshold
System.Private.CoreLib (8)
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\HashSet.cs (8)
1590Span<int> span = stackalloc int[StackAllocThreshold]; 1591BitHelper bitHelper = (uint)intArrayLength <= StackAllocThreshold ? 1658Span<int> itemsToRemoveSpan = stackalloc int[StackAllocThreshold / 2]; 1659BitHelper itemsToRemove = intArrayLength <= StackAllocThreshold / 2 ? 1663Span<int> itemsAddedFromOtherSpan = stackalloc int[StackAllocThreshold / 2]; 1664BitHelper itemsAddedFromOther = intArrayLength <= StackAllocThreshold / 2 ? 1746Span<int> span = stackalloc int[StackAllocThreshold]; 1747BitHelper bitHelper = intArrayLength <= StackAllocThreshold ?