26 references to IntrospectiveSortUtilities
mscorlib (26)
system\array.cs (8)
1996DepthLimitedQuickSort(left, length + left - 1, IntrospectiveSortUtilities.QuickSortDepthThreshold); 2106IntroSort(left, length + left - 1, 2 * IntrospectiveSortUtilities.FloorLog2(keys.Length)); 2110IntrospectiveSortUtilities.ThrowOrIgnoreBadComparer(comparer); 2123if (partitionSize <= IntrospectiveSortUtilities.IntrosortSizeThreshold) 2315DepthLimitedQuickSort(left, length + left - 1, IntrospectiveSortUtilities.QuickSortDepthThreshold); 2423IntroSort(left, length + left - 1, 2 * IntrospectiveSortUtilities.FloorLog2(keys.Length)); 2427IntrospectiveSortUtilities.ThrowOrIgnoreBadComparer(comparer); 2440if (partitionSize <= IntrospectiveSortUtilities.IntrosortSizeThreshold)
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)