system\collections\generic\arraysorthelper.cs (18)
155DepthLimitedQuickSort(keys, index, length + index - 1, comparer, IntrospectiveSortUtilities.QuickSortDepthThreshold);
161IntrospectiveSortUtilities.ThrowOrIgnoreBadComparer(comparer);
305IntroSort(keys, left, length + left - 1, 2 * IntrospectiveSortUtilities.FloorLog2(keys.Length), comparer);
318if (partitionSize <= IntrospectiveSortUtilities.IntrosortSizeThreshold)
499DepthLimitedQuickSort(keys, index, length + index - 1, IntrospectiveSortUtilities.QuickSortDepthThreshold);
518ArraySortHelper<T>.DepthLimitedQuickSort(keys, index, length + index - 1, comparer, IntrospectiveSortUtilities.QuickSortDepthThreshold);
525IntrospectiveSortUtilities.ThrowOrIgnoreBadComparer(comparer);
705IntroSort(keys, left, length + left - 1, 2 * IntrospectiveSortUtilities.FloorLog2(keys.Length));
717if (partitionSize <= IntrospectiveSortUtilities.IntrosortSizeThreshold)
931DepthLimitedQuickSort(keys, values, index, length + index - 1, comparer, IntrospectiveSortUtilities.QuickSortDepthThreshold);
937IntrospectiveSortUtilities.ThrowOrIgnoreBadComparer(comparer);
1062IntroSort(keys, values, left, length + left - 1, 2 * IntrospectiveSortUtilities.FloorLog2(keys.Length), comparer);
1076if (partitionSize <= IntrospectiveSortUtilities.IntrosortSizeThreshold)
1261DepthLimitedQuickSort(keys, values, index, length + index - 1, IntrospectiveSortUtilities.QuickSortDepthThreshold);
1280ArraySortHelper<TKey, TValue>.DepthLimitedQuickSort(keys, values, index, length + index - 1, comparer, IntrospectiveSortUtilities.QuickSortDepthThreshold);
1288IntrospectiveSortUtilities.ThrowOrIgnoreBadComparer(comparer);
1418IntroSort(keys, values, left, length + left - 1, 2 * IntrospectiveSortUtilities.FloorLog2(keys.Length));
1431if (partitionSize <= IntrospectiveSortUtilities.IntrosortSizeThreshold)