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