2 writes to MaxDepth
Microsoft.CodeAnalysis.Workspaces (2)
Differencing\LongestCommonSubsequence.cs (2)
87
MaxDepth
= FirstSegmentMaxDepth;
103
MaxDepth
= 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)).
94
var minDepth = previous.
MaxDepth
+ 1;
95
var maxDepth = (int)(previous.
MaxDepth
* GrowFactor);
119
=>
MaxDepth
> PooledSegmentMaxDepthThreshold;
157
if (depth > _currentBuffer.
MaxDepth
)