Home
last modified time | relevance | path

Searched refs:first1 (Results 1 – 25 of 30) 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/external/security/rk_tee_user/v2/ta/vector_util/
H A Dc_algo.c80 c_bool c_lexicographical_compare(c_iterator first1, in c_lexicographical_compare() argument
86 for(; !ITER_EQUAL(first1, last1) && 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.h85 c_bool c_lexicographical_compare(c_iterator first1,
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…
103 c_iterator c_search(c_iterator first1,
/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
43 if (first1 != last1){ in insertion_sort_op()
45 op(first1, last2); in insertion_sort_op()
46 for (++last2; ++first1 != last1; ++last2){ in insertion_sort_op()
49 if (comp(*first1, *--i2)){ in insertion_sort_op()
51 for (--j2; i2 != first2 && comp(*first1, *--i2); --j2) { in insertion_sort_op()
55 op(first1, j2); 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
[all …]
H A Dadaptive_sort_merge.hpp390 ( RandIt first1, RandIt const last1 in skip_until_merge() argument
393 while(first1 != last1 && !comp(next_key, *first1)){ in skip_until_merge()
394 ++first1; in skip_until_merge()
396 return 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()
414 op(three_way_t(), first2++, first1++, lastb++); 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()
424 op(three_way_t(), comp(*first2, *firstb) ? first2++ : firstb++, first1++, lastb++); in op_buffered_partial_merge_to_range1_and_buffer()
[all …]
H A Dmerge.hpp161 , RandIt first1 in op_merge_left() argument
168 if(first1 == last1){ in op_merge_left()
172 else if(comp(*first2, *first1)){ in op_merge_left()
177 op(first1, buf_first); in op_merge_left()
178 ++first1; in op_merge_left()
181 if(buf_first != first1){//In case all remaining elements are in the same place 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
[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.hpp27 inline bool equal_impl( SinglePassTraversalReadableIterator1 first1, in equal_impl() argument
39 if (first1 == last1) in equal_impl()
49 if (*first1 != *first2) in equal_impl()
52 ++first1; in equal_impl()
66 inline bool equal_impl( SinglePassTraversalReadableIterator1 first1, in equal_impl() argument
79 if (first1 == last1) in equal_impl()
89 if (!pred(*first1, *first2)) in equal_impl()
92 ++first1; in equal_impl()
105 inline bool equal_impl( RandomAccessTraversalReadableIterator1 first1, in equal_impl() argument
112 return ((last1 - first1) == (last2 - first2)) in equal_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 Dalgorithm.hpp122 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()
126 if (p(*first1, *it)) { in find_first_of()
127 return first1; in find_first_of()
135 ForwardIt1 search(ForwardIt1 first1, ForwardIt1 last1, in search() argument
138 for (; ; ++first1) { in search()
139 ForwardIt1 it = first1; in search()
142 return first1; in search()
/OK3568_Linux_fs/kernel/arch/ia64/lib/
H A Ddo_csum.S97 #define first1 r18 macro
143 and first1=-8,buf // 8-byte align down address of first1 element
155 sub tmp3=last,first1 // tmp3=distance from first1 to last
158 cmp.eq p8,p9=last,first1 // everything fits in one word ?
160 ld8 firstval=[first1],8 // load, ahead of time, "first1" word
195 ld8 word1[1]=[first1],8 // load an 8-byte word
211 add first2=8,first1
234 (p[0]) ld8 word1[0]=[first1],16
/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
247 while (first1 != last1) { in adl_move_swap_ranges()
248 ::boost::adl_move_swap(*first1, *first2); in adl_move_swap_ranges()
249 ++first1; 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()
/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.hpp107 ForwardIterator1 first1, in constexpr_search() argument
113 return first1; // specified in C++11 in constexpr_search()
116 while (first1 != last1) { in constexpr_search()
117 ForwardIterator1 it1 = first1; in constexpr_search()
123 if (it2 == last2) return first1; in constexpr_search()
127 ++first1; 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 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()
53 fusion::next(first1) 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()
43 fusion::next(first1) in any_ns()
H A Dany_if.hpp180 any_if (First1 const& first1, First2 const& first2, Last1 const& last1 in any_if() argument
186 return f(*first1, attribute) || in any_if()
188 fusion::next(first1) 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 Ddistance_impl.hpp55 return boost::fusion::distance(first.first1, last.first1); in call()
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.hpp70 boost::fusion::advance<Dist>(i.first1) in call()
/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()
69 first1_type first1; member
/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,
52 transform_reduce(InputIterator1 first1, InputIterator1 last1,
57 transform_reduce(InputIterator1 first1, InputIterator1 last1,
H A Dalgorithm56 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 Dnumeric42 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 Dalgorithm56 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 …]

12