1 instantiation of VStack
Microsoft.CodeAnalysis.Workspaces (1)
Differencing\LongestCommonSubsequence.cs (1)
237=> new(s_pool);
7 references to VStack
Microsoft.CodeAnalysis.Workspaces (7)
Differencing\LongestCommonSubsequence.cs (7)
28/// Underlying storage for <see cref="VArray"/>s allocated on <see cref="VStack"/>. 40/// We pool a few of these linked buffers on <see cref="VStack"/> to conserve allocations. 236protected static VStack CreateStack() 250var stack = ComputeEditPaths(oldSequence, oldLength, newSequence, newLength); 303var stack = ComputeEditPaths(oldSequence, oldLength, newSequence, newLength); 435private VStack ComputeEditPaths(TSequence oldSequence, int oldLength, TSequence newSequence, int newLength) 440var stack = CreateStack();