8 references to StackAllocThreshold
Microsoft.Build (8)
src\msbuild\artifacts\.packages\microsoft.codeanalysis.collections\5.0.0-1.25277.114\contentFiles\cs\net9.0\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