Searched refs:itaux (Results 1 – 5 of 5) sorted by relevance
/third_party/boost/boost/sort/common/ |
D | sort_basic.hpp | 142 Iter_t itaux = last - 1; in is_stable_sorted_backward() local 143 while (itaux != first and not comp(*itaux, *(itaux - 1))) {--itaux; }; in is_stable_sorted_backward() 144 return itaux; in is_stable_sorted_backward() 165 Iter_t itaux = last - 1; in is_reverse_stable_sorted_backward() local 166 for (; itaux != first and comp(*itaux, *(itaux - 1)); --itaux); in is_reverse_stable_sorted_backward() 167 return itaux; in is_reverse_stable_sorted_backward() 190 Iter_t itaux = last - 1; in number_stable_sorted_backward() local 191 while (itaux != first and not comp(*itaux, *(itaux - 1))) {--itaux; }; in number_stable_sorted_backward() 192 size_t nsorted = size_t ( last - itaux); in number_stable_sorted_backward() 196 itaux = last - 1; in number_stable_sorted_backward() [all …]
|
D | pivot.hpp | 113 Iter_t itaux = mid9 (first + 1, first + cupo, first + 2 * cupo, in pivot9() local 116 std::swap (*first, *itaux); in pivot9()
|
/third_party/boost/boost/sort/common/util/ |
D | search.hpp | 195 Iter_t itaux = internal_find_first(first, last, val, comp, flt); in lower_bound() local 196 return (itaux == (last - 1) and comp(flt(*itaux), val)) ? last : itaux; in lower_bound() 219 Iter_t itaux = internal_find_last(first, last, val, comp, flt); in upper_bound() local 220 return (itaux == first and comp(val, flt(*itaux))) ? itaux : itaux + 1; in upper_bound()
|
/third_party/boost/boost/sort/flat_stable_sort/ |
D | flat_stable_sort.hpp | 190 Iter_t itaux = rng.first + nsorted1; in is_sorted_forward() local 193 flat_stable_sort(itaux, rng.last, cmp, ptr_circ); in is_sorted_forward() 194 bscu::insert_sorted(rng.first, itaux, rng.last, cmp, in is_sorted_forward() 230 Iter_t itaux = rng.last - nsorted2; in is_sorted_backward() local 235 flat_stable_sort(rng.first, itaux, cmp, ptr_circ); in is_sorted_backward() 236 bscu::insert_sorted_backward(rng.first, itaux, rng.last, cmp, in is_sorted_backward()
|
/third_party/boost/boost/sort/sample_sort/ |
D | sample_sort.hpp | 423 Iter_t itaux = vmem_thread[i].first; in initial_configuration() local 427 Iter_t it2 = std::upper_bound(itaux, vmem_thread[i].last, in initial_configuration() 430 vv_range_first[i].emplace_back(itaux, it2); in initial_configuration() 431 itaux = it2; in initial_configuration() 433 vv_range_first[i].emplace_back(itaux, vmem_thread[i].last); in initial_configuration()
|