2 writes to MaxDepth
Microsoft.CodeAnalysis.Workspaces (2)
Differencing\LongestCommonSubsequence.cs (2)
87MaxDepth = FirstSegmentMaxDepth; 103MaxDepth = maxDepth;
6 references to MaxDepth
Microsoft.CodeAnalysis.Workspaces (6)
Differencing\LongestCommonSubsequence.cs (6)
37/// corresponding to stack depths <see cref="MinDepth"/> to <see cref="MaxDepth"/>. 72/// This threshold is achieved when <see cref="MaxDepth"/> is greater than <see cref="PooledSegmentMaxDepthThreshold"/> = sqrt(size_limit / sizeof(int)). 94var minDepth = previous.MaxDepth + 1; 95var maxDepth = (int)(previous.MaxDepth * GrowFactor); 119=> MaxDepth > PooledSegmentMaxDepthThreshold; 157if (depth > _currentBuffer.MaxDepth)