Home
last modified time | relevance | path

Searched refs:AdaptiveSortInsertionSortThreshold (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/move/include/boost/move/algo/detail/
Dadaptive_sort_merge.hpp112 static const std::size_t AdaptiveSortInsertionSortThreshold = 16; variable
114 BOOST_STATIC_ASSERT((AdaptiveSortInsertionSortThreshold&(AdaptiveSortInsertionSortThreshold-1)) == …
456 while(s > AdaptiveSortInsertionSortThreshold){ in floor_merge_multiple()
471 if(base < AdaptiveSortInsertionSortThreshold){ in ceil_merge_multiple()
475 base = AdaptiveSortInsertionSortThreshold/2 + 1; in ceil_merge_multiple()
526 while((L - m) > size_type(AdaptiveSortInsertionSortThreshold)){ in slow_stable_sort()
527 insertion_sort(first+m, first+m+size_type(AdaptiveSortInsertionSortThreshold), comp); in slow_stable_sort()
528 m += AdaptiveSortInsertionSortThreshold; in slow_stable_sort()
533 size_type h = AdaptiveSortInsertionSortThreshold; in slow_stable_sort()
1375 size_type const s = min_value<size_type>(step, AdaptiveSortInsertionSortThreshold); in op_insertion_sort_step_left()
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/move/include/boost/move/algo/
Dadaptive_sort.hpp465 l_base = min_value<Unsigned>(n_keys, AdaptiveSortInsertionSortThreshold); in adaptive_sort_build_params()
542 if(len <= size_type(AdaptiveSortInsertionSortThreshold)){ in adaptive_sort_impl()
550 BOOST_STATIC_ASSERT(AdaptiveSortInsertionSortThreshold >= 4); in adaptive_sort_impl()