| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/intrusive/detail/ |
| H A D | algorithm.hpp | 42 bool algo_equal(InputIt1 first1, InputIt1 last1, InputIt2 first2, BinaryPredicate p) in algo_equal() argument 44 for (; first1 != last1; ++first1, ++first2) { in algo_equal() 53 bool algo_equal(InputIt1 first1, InputIt1 last1, InputIt2 first2) in algo_equal() argument 54 { return (algo_equal)(first1, last1, first2, algo_pred_equal()); } in algo_equal() 57 bool algo_equal(InputIt1 first1, InputIt1 last1, InputIt2 first2, InputIt2 last2, BinaryPredicate p… in algo_equal() argument 59 for (; first1 != last1 && first2 != last2; ++first1, ++first2) in algo_equal() 62 return first1 == last1 && first2 == last2; in algo_equal() 66 bool algo_equal(InputIt1 first1, InputIt1 last1, InputIt2 first2, InputIt2 last2) in algo_equal() argument 67 { return (algo_equal)(first1, last1, first2, last2, algo_pred_equal()); } in algo_equal() 70 bool algo_lexicographical_compare (InputIterator1 first1, InputIterator1 last1, in algo_lexicographical_compare() argument [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/range/algorithm/ |
| H A D | equal.hpp | 28 SinglePassTraversalReadableIterator1 last1, in equal_impl() argument 39 if (first1 == last1) in equal_impl() 67 SinglePassTraversalReadableIterator1 last1, in equal_impl() argument 79 if (first1 == last1) in equal_impl() 106 RandomAccessTraversalReadableIterator1 last1, in equal_impl() argument 112 return ((last1 - first1) == (last2 - first2)) in equal_impl() 113 && std::equal(first1, last1, first2); in equal_impl() 120 RandomAccessTraversalReadableIterator1 last1, in equal_impl() argument 127 return ((last1 - first1) == (last2 - first2)) in equal_impl() 128 && std::equal(first1, last1, first2, pred); in equal_impl() [all …]
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/ta/vector_util/ |
| H A D | c_algo.c | 81 c_iterator last1, in c_lexicographical_compare() argument 86 for(; !ITER_EQUAL(first1, last1) && in c_lexicographical_compare() 95 return (ITER_EQUAL(first1, last1) && !ITER_EQUAL(first2, last2)); in c_lexicographical_compare() 121 c_bool c_equal(c_iterator first1, c_iterator last1, c_iterator first2, BINARY_PREDICATE pf) in c_equal() argument 123 for(; !ITER_EQUAL(first1, last1); ITER_INC(first1), ITER_INC(first2)) in c_equal() 129 c_bool c_equal2(c_iterator first1, c_iterator last1, c_iterator first2, c_binary_predicate binary_p… in c_equal2() argument 131 for(; !ITER_EQUAL(first1, last1); ITER_INC(first1), ITER_INC(first2)) in c_equal2() 305 c_iterator last1, in c_search() argument 310 if(ITER_EQUAL(first1, last1) || in c_search() 320 while(!ITER_EQUAL(first1, last1) && in c_search() [all …]
|
| H A D | c_algo.h | 86 c_iterator last1, 94 c_bool c_equal(c_iterator first1, c_iterator last1, c_iterator first2, BINARY_PREDICATE pf); 95 c_bool c_equal2(c_iterator first1, c_iterator last1, c_iterator first2, c_binary_predicate binary_p… 104 c_iterator last1,
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/move/algo/detail/ |
| H A D | insertion_sort.hpp | 41 void insertion_sort_op(ForwardIterator first1, ForwardIterator last1, BirdirectionalIterator first2… in insertion_sort_op() argument 43 if (first1 != last1){ in insertion_sort_op() 46 for (++last2; ++first1 != last1; ++last2){ in insertion_sort_op() 61 void insertion_sort_swap(ForwardIterator first1, ForwardIterator last1, BirdirectionalIterator firs… in insertion_sort_swap() argument 63 insertion_sort_op(first1, last1, first2, comp, swap_op()); in insertion_sort_swap() 68 void insertion_sort_copy(ForwardIterator first1, ForwardIterator last1, BirdirectionalIterator firs… in insertion_sort_copy() argument 70 insertion_sort_op(first1, last1, first2, comp, move_op()); in insertion_sort_copy() 97 (BirdirectionalIterator first1, BirdirectionalIterator const last1 in insertion_sort_uninitialized_copy() argument 102 if (first1 != last1){ in insertion_sort_uninitialized_copy() 107 for (++last2; ++first1 != last1; ++last2){ in insertion_sort_uninitialized_copy()
|
| H A D | merge.hpp | 162 , RandIt const last1 in op_merge_left() argument 167 for(RandIt first2=last1; first2 != last2; ++buf_first){ in op_merge_left() 168 if(first1 == last1){ in op_merge_left() 184 op(forward_t(), first1, last1, buf_first); in op_merge_left() 194 (RandIt buf_first, RandIt first1, RandIt const last1, RandIt const last2, Compare comp) in merge_left() argument 196 op_merge_left(buf_first, first1, last1, last2, comp, move_op()); in merge_left() 205 (RandIt buf_first, RandIt first1, RandIt const last1, RandIt const last2, Compare comp) in swap_merge_left() argument 207 op_merge_left(buf_first, first1, last1, last2, comp, swap_op()); in swap_merge_left() 212 (RandIt const first1, RandIt last1, RandIt last2, RandIt buf_last, Compare comp, Op op) in op_merge_right() argument 214 RandIt const first2 = last1; in op_merge_right() [all …]
|
| H A D | adaptive_sort_merge.hpp | 390 ( RandIt first1, RandIt const last1 in skip_until_merge() argument 393 while(first1 != last1 && !comp(next_key, *first1)){ in skip_until_merge() 402 ( RandIt1 first1, RandIt1 const last1 in op_buffered_partial_merge_to_range1_and_buffer() argument 413 if(first1 != last1 && first2 != last2){ in op_buffered_partial_merge_to_range1_and_buffer() 417 if(first1 == last1){ in op_buffered_partial_merge_to_range1_and_buffer() 421 lastb = op(forward_t(), first1, last1, firstb); in op_buffered_partial_merge_to_range1_and_buffer() 464 (RandIt first1, RandIt last1, RandIt const last2, bool *const pis_range1_A, Compare comp) in partial_merge_bufferless_impl() argument 466 if(last1 == last2){ in partial_merge_bufferless_impl() 470 if(first1 != last1 && comp(*last1, last1[-1])){ in partial_merge_bufferless_impl() 472 RandIt const old_last1 = last1; in partial_merge_bufferless_impl() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/container/detail/ |
| H A D | algorithm.hpp | 122 InputIt find_first_of(InputIt first1, InputIt last1, ForwardIt first2, ForwardIt last2, BinaryPredi… in find_first_of() argument 124 for (; first1 != last1; ++first1) { in find_first_of() 131 return last1; in find_first_of() 135 ForwardIt1 search(ForwardIt1 first1, ForwardIt1 last1, in search() argument 144 if (it == last1) { in search() 145 return last1; in search()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/move/ |
| H A D | adl_move_swap.hpp | 245 ForwardIt2 adl_move_swap_ranges(ForwardIt1 first1, ForwardIt1 last1, ForwardIt2 first2) in adl_move_swap_ranges() argument 247 while (first1 != last1) { in adl_move_swap_ranges() 256 BidirIt2 adl_move_swap_ranges_backward(BidirIt1 first1, BidirIt1 last1, BidirIt2 last2) in adl_move_swap_ranges_backward() argument 258 while (first1 != last1) { in adl_move_swap_ranges_backward() 259 ::boost::adl_move_swap(*(--last1), *(--last2)); in adl_move_swap_ranges_backward()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/type_index/detail/ |
| H A D | compile_time_type_info.hpp | 108 ForwardIterator1 last1, in constexpr_search() argument 116 while (first1 != last1) { in constexpr_search() 124 if (it1 == last1) return last1; in constexpr_search() 130 return last1; in constexpr_search()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/support/algorithm/ |
| H A D | any_if_ns.hpp | 49 , Last1 const& last1, Last2 const& last2, F& f, mpl::false_) in any_if_ns() argument 55 , last1, last2 in any_if_ns()
|
| H A D | any_if.hpp | 180 any_if (First1 const& first1, First2 const& first2, Last1 const& last1 in any_if() argument 190 , last1, last2 in any_if()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/fusion/view/transform_view/detail/ |
| H A D | end_impl.hpp | 62 return type(s.last1(), s.last2(), s.f); in call()
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/libcxx/include/ |
| H A D | numeric | 42 inner_product(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, T init); 46 inner_product(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, 52 transform_reduce(InputIterator1 first1, InputIterator1 last1, 57 transform_reduce(InputIterator1 first1, InputIterator1 last1,
|
| H A D | algorithm | 56 find_end(ForwardIterator1 first1, ForwardIterator1 last1, 61 find_end(ForwardIterator1 first1, ForwardIterator1 last1, 66 find_first_of(ForwardIterator1 first1, ForwardIterator1 last1, 71 find_first_of(ForwardIterator1 first1, ForwardIterator1 last1, 92 mismatch(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2); 96 mismatch(InputIterator1 first1, InputIterator1 last1, 101 mismatch(InputIterator1 first1, InputIterator1 last1, 106 mismatch(InputIterator1 first1, InputIterator1 last1, 112 equal(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2); 116 equal(InputIterator1 first1, InputIterator1 last1, [all …]
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/libcxx/include/ |
| H A D | numeric | 42 inner_product(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, T init); 46 inner_product(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, 52 transform_reduce(InputIterator1 first1, InputIterator1 last1, 57 transform_reduce(InputIterator1 first1, InputIterator1 last1,
|
| H A D | algorithm | 56 find_end(ForwardIterator1 first1, ForwardIterator1 last1, 61 find_end(ForwardIterator1 first1, ForwardIterator1 last1, 66 find_first_of(ForwardIterator1 first1, ForwardIterator1 last1, 71 find_first_of(ForwardIterator1 first1, ForwardIterator1 last1, 92 mismatch(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2); 96 mismatch(InputIterator1 first1, InputIterator1 last1, 101 mismatch(InputIterator1 first1, InputIterator1 last1, 106 mismatch(InputIterator1 first1, InputIterator1 last1, 112 equal(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2); 116 equal(InputIterator1 first1, InputIterator1 last1, [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/fusion/view/transform_view/ |
| H A D | transform_view.hpp | 71 last1_type last1() const { return fusion::end(seq1); } in last1() function
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/overlay/ |
| H A D | get_turn_info_for_endpoint.hpp | 398 bool first1, bool last1, bool first2, bool last2, in handle_internal() 466 else if ( last1 ) in handle_internal()
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/ |
| H A D | numeric | 331 * Call `binary_op2(first1[n],first2[n])` for each `n` in `[0,last1-first1)` 335 * The range beginning at `first2` must contain at least `last1-first1` 376 * Call `first1[n]*first2[n]` for each `n` in `[0,last1-first1)` and then 379 * The range beginning at `first2` must contain at least `last1-first1`
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/ |
| H A D | numeric | 331 * Call `binary_op2(first1[n],first2[n])` for each `n` in `[0,last1-first1)` 335 * The range beginning at `first2` must contain at least `last1-first1` 376 * Call `first1[n]*first2[n]` for each `n` in `[0,last1-first1)` and then 379 * The range beginning at `first2` must contain at least `last1-first1`
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/container/ |
| H A D | vector.hpp | 2100 const const_iterator last1(x.cend()), last2(y.cend()); in operator <() local 2101 for ( ; (first1 != last1) && (first2 != last2); ++first1, ++first2 ) { in operator <() 2105 return (first1 == last1) && (first2 != last2); in operator <()
|