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