system\collections\generic\arraysorthelper.cs (4)
155DepthLimitedQuickSort(keys, index, length + index - 1, comparer, IntrospectiveSortUtilities.QuickSortDepthThreshold);
282if (left < j) DepthLimitedQuickSort(keys, left, j, comparer, depthLimit);
287if (i < right) DepthLimitedQuickSort(keys, i, right, comparer, depthLimit);
518ArraySortHelper<T>.DepthLimitedQuickSort(keys, index, length + index - 1, comparer, IntrospectiveSortUtilities.QuickSortDepthThreshold);