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