Home
last modified time | relevance | path

Searched refs:first2 (Results 1 – 25 of 50) sorted by relevance

12

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/intrusive/detail/
H A Dalgorithm.hpp42 bool algo_equal(InputIt1 first1, InputIt1 last1, InputIt2 first2, BinaryPredicate p) in algo_equal() argument
44 for (; first1 != last1; ++first1, ++first2) { in algo_equal()
45 if (!p(*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()
60 if (!pred(*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
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/range/algorithm/
H A Dequal.hpp29 SinglePassTraversalReadableIterator2 first2, in equal_impl() argument
40 return first2 == last2; in equal_impl()
45 if (first2 == last2) in equal_impl()
49 if (*first1 != *first2) in equal_impl()
53 ++first2; in equal_impl()
68 SinglePassTraversalReadableIterator2 first2, in equal_impl() argument
80 return first2 == last2; in equal_impl()
85 if (first2 == last2) in equal_impl()
89 if (!pred(*first1, *first2)) in equal_impl()
93 ++first2; in equal_impl()
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/ta/vector_util/
H A Dc_algo.c82 c_iterator first2, in c_lexicographical_compare() argument
87 !ITER_EQUAL(first2, last2); in c_lexicographical_compare()
88 ITER_INC(first1), ITER_INC(first2)) in c_lexicographical_compare()
90 if((*cmp)(ITER_REF(first1), ITER_REF(first2)) < 0) in c_lexicographical_compare()
92 if((*cmp)(ITER_REF(first1), ITER_REF(first2)) > 0) 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()
124 if(!(pf)(ITER_REF(first1), ITER_REF(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
[all …]
H A Dc_algo.h87 c_iterator first2,
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…
105 c_iterator first2,
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/move/algo/detail/
H A Dinsertion_sort.hpp41 void insertion_sort_op(ForwardIterator first1, ForwardIterator last1, BirdirectionalIterator first2 in insertion_sort_op() argument
44 BirdirectionalIterator last2 = first2; in insertion_sort_op()
51 for (--j2; i2 != first2 && comp(*first1, *--i2); --j2) { in insertion_sort_op()
61 …rt_swap(ForwardIterator first1, ForwardIterator last1, BirdirectionalIterator first2, Compare comp) in insertion_sort_swap() argument
63 insertion_sort_op(first1, last1, first2, comp, swap_op()); in insertion_sort_swap()
68 …rt_copy(ForwardIterator first1, ForwardIterator last1, BirdirectionalIterator first2, Compare comp) in insertion_sort_copy() argument
70 insertion_sort_op(first1, last1, first2, comp, move_op()); in insertion_sort_copy()
98 , BirdirectionalRawIterator const first2 in insertion_sort_uninitialized_copy() argument
103 BirdirectionalRawIterator last2 = first2; in insertion_sort_uninitialized_copy()
105 destruct_n<value_type, BirdirectionalRawIterator> d(first2); in insertion_sort_uninitialized_copy()
[all …]
H A Dadaptive_sort_merge.hpp408 RandIt2 first2 = rfirst2; in op_buffered_partial_merge_to_range1_and_buffer() local
413 if(first1 != last1 && first2 != last2){ in op_buffered_partial_merge_to_range1_and_buffer()
414 op(three_way_t(), first2++, first1++, lastb++); in op_buffered_partial_merge_to_range1_and_buffer()
420 if(first2 == last2){ in op_buffered_partial_merge_to_range1_and_buffer()
424 op(three_way_t(), comp(*first2, *firstb) ? first2++ : firstb++, first1++, lastb++); in op_buffered_partial_merge_to_range1_and_buffer()
426 rfirst2 = first2; in op_buffered_partial_merge_to_range1_and_buffer()
984 RandIt2 first2 = rfirst2; in op_buffered_partial_merge_and_swap_to_range1_and_buffer() local
989 if(first1 != last1 && first2 != last2){ in op_buffered_partial_merge_and_swap_to_range1_and_buffer()
991 op(four_way_t(), first2++, first_min++, first1++, lastb++); in op_buffered_partial_merge_and_swap_to_range1_and_buffer()
994 if(first2 == last2){ in op_buffered_partial_merge_and_swap_to_range1_and_buffer()
[all …]
H A Dmerge.hpp167 for(RandIt first2=last1; first2 != last2; ++buf_first){ in op_merge_left() local
169 op(forward_t(), first2, last2, buf_first); in op_merge_left()
172 else if(comp(*first2, *first1)){ in op_merge_left()
173 op(first2, buf_first); in op_merge_left()
174 ++first2; in op_merge_left()
214 RandIt const first2 = last1; in op_merge_right() local
216 if(last2 == first2){ in op_merge_right()
235 op(backward_t(), first2, last2, buf_last); in op_merge_right()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/container/detail/
H A Dalgorithm.hpp122 InputIt find_first_of(InputIt first1, InputIt last1, ForwardIt first2, ForwardIt last2, BinaryPredi… in find_first_of() argument
125 for (ForwardIt it = first2; it != last2; ++it) { in find_first_of()
136 ForwardIt2 first2, ForwardIt2 last2, BinaryPredicate p) in search() argument
140 for (ForwardIt2 it2 = first2; ; ++it, ++it2) { in search()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/move/
H A Dadl_move_swap.hpp245 ForwardIt2 adl_move_swap_ranges(ForwardIt1 first1, ForwardIt1 last1, ForwardIt2 first2) in adl_move_swap_ranges() argument
248 ::boost::adl_move_swap(*first1, *first2); in adl_move_swap_ranges()
250 ++first2; in adl_move_swap_ranges()
252 return first2; in adl_move_swap_ranges()
/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 Dany_if_ns.hpp48 any_if_ns(First1 const& first1, First2 const& first2 in any_if_ns() argument
51 return (0 != (f(*first1, spirit::detail::attribute_value<Pred, First1, Last2>(first2)) | in any_if_ns()
54 , attribute_next<Pred, First1, Last2>(first2) in any_if_ns()
H A Dany_ns.hpp39 any_ns(First1 const& first1, First2 const& first2, Last const& last, F& f, mpl::false_) in any_ns() argument
41 return (0 != (f(*first1, *first2) | in any_ns()
44 , fusion::next(first2) in any_ns()
H A Dany_if.hpp180 any_if (First1 const& first1, First2 const& first2, Last1 const& last1 in any_if() argument
184 attribute = spirit::detail::attribute_value<Pred, First1, Last2>(first2); in any_if()
189 , attribute_next<Pred, First1, Last2>(first2) 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/
H A Dtransform_view_iterator.hpp67 : first1(converter1::call(in_first1)), first2(converter2::call(in_first2)), f(in_f) {} in transform_view_iterator2()
70 first2_type first2; member
H A Dtransform_view.hpp69 first2_type first2() const { return fusion::begin(seq2); } in first2() function
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/type_index/detail/
H A Dcompile_time_type_info.hpp109 ForwardIterator2 first2, in constexpr_search() argument
112 if (first2 == last2) { in constexpr_search()
118 ForwardIterator2 it2 = first2; in constexpr_search()
/OK3568_Linux_fs/kernel/arch/ia64/lib/
H A Ddo_csum.S110 #define first2 r31 macro
211 add first2=8,first1
235 (p[0]) ld8 word2[0]=[first2],16
/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 Dbegin_impl.hpp62 return type(s.first1(), s.first2(), s.f); in call()
H A Dderef_impl.hpp70 return i.f(*i.first1, *i.first2); in call()
H A Dprior_impl.hpp69 return type(fusion::prior(i.first1), fusion::prior(i.first2), i.f); in call()
H A Dnext_impl.hpp68 return type(fusion::next(i.first1), fusion::next(i.first2), i.f); in call()
H A Dadvance_impl.hpp71 , boost::fusion::advance<Dist>(i.first2), i.f); in call()
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/libcxx/include/
H A Dnumeric42 inner_product(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, T init);
46 inner_product(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2,
53 InputIterator2 first2, T init); // C++17
58 InputIterator2 first2, T init,
H A Dalgorithm57 ForwardIterator2 first2, ForwardIterator2 last2);
62 ForwardIterator2 first2, ForwardIterator2 last2, BinaryPredicate pred);
67 ForwardIterator2 first2, ForwardIterator2 last2);
72 ForwardIterator2 first2, ForwardIterator2 last2, BinaryPredicate pred);
92 mismatch(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2);
97 InputIterator2 first2, InputIterator2 last2); // **C++14**
102 InputIterator2 first2, BinaryPredicate pred);
107 InputIterator2 first2, InputIterator2 last2,
112 equal(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2);
117 InputIterator2 first2, InputIterator2 last2); // **C++14**
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/libcxx/include/
H A Dnumeric42 inner_product(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, T init);
46 inner_product(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2,
53 InputIterator2 first2, T init); // C++17
58 InputIterator2 first2, T init,
H A Dalgorithm57 ForwardIterator2 first2, ForwardIterator2 last2);
62 ForwardIterator2 first2, ForwardIterator2 last2, BinaryPredicate pred);
67 ForwardIterator2 first2, ForwardIterator2 last2);
72 ForwardIterator2 first2, ForwardIterator2 last2, BinaryPredicate pred);
92 mismatch(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2);
97 InputIterator2 first2, InputIterator2 last2); // **C++14**
102 InputIterator2 first2, BinaryPredicate pred);
107 InputIterator2 first2, InputIterator2 last2,
112 equal(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2);
117 InputIterator2 first2, InputIterator2 last2); // **C++14**
[all …]

12