8 references to StackAllocThreshold
Microsoft.CodeAnalysis.Threading.Package (8)
src\Dependencies\Collections\Segmented\SegmentedHashSet`1.cs (8)
1179Span<int> span = stackalloc int[StackAllocThreshold]; 1180var bitHelper = intArrayLength <= StackAllocThreshold 1247Span<int> itemsToRemoveSpan = stackalloc int[StackAllocThreshold / 2]; 1248var itemsToRemove = intArrayLength <= StackAllocThreshold / 2 1252Span<int> itemsAddedFromOtherSpan = stackalloc int[StackAllocThreshold / 2]; 1253var itemsAddedFromOther = intArrayLength <= StackAllocThreshold / 2 1334Span<int> span = stackalloc int[StackAllocThreshold]; 1335var bitHelper = intArrayLength <= StackAllocThreshold