8 references to StackAllocThreshold
Microsoft.CodeAnalysis.Collections.Package (8)
SegmentedHashSet`1.cs (8)
1177Span<int> span = stackalloc int[StackAllocThreshold]; 1178var bitHelper = intArrayLength <= StackAllocThreshold 1245Span<int> itemsToRemoveSpan = stackalloc int[StackAllocThreshold / 2]; 1246var itemsToRemove = intArrayLength <= StackAllocThreshold / 2 1250Span<int> itemsAddedFromOtherSpan = stackalloc int[StackAllocThreshold / 2]; 1251var itemsAddedFromOther = intArrayLength <= StackAllocThreshold / 2 1332Span<int> span = stackalloc int[StackAllocThreshold]; 1333var bitHelper = intArrayLength <= StackAllocThreshold