Home
last modified time | relevance | path

Searched refs:first (Results 1 – 25 of 3772) sorted by relevance

12345678910>>...151

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/algorithm/
H A Dminmax_element.hpp56 basic_minmax_element(ForwardIter first, ForwardIter last, Compare comp) in basic_minmax_element() argument
58 if (first == last) in basic_minmax_element()
61 ForwardIter min_result = first; in basic_minmax_element()
62 ForwardIter max_result = first; in basic_minmax_element()
65 ForwardIter second = first; ++second; in basic_minmax_element()
71 if (comp(first, second)) in basic_minmax_element()
75 potential_min_result = first; in basic_minmax_element()
79 first = ++second; if (first != last) ++second; in basic_minmax_element()
81 if (comp(first, second)) { in basic_minmax_element()
82 if (comp(first, min_result)) { in basic_minmax_element()
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/ta/vector_util/
H A Dc_algo.c62 c_iterator c_copy(c_iterator first, c_iterator last, c_iterator result) in c_copy() argument
64 for(; !ITER_EQUAL(first, last); ITER_INC(first), ITER_INC(result)) in c_copy()
65 ITER_REF_ASSIGN(result, ITER_REF(first)); in c_copy()
69 c_iterator c_copy_backward(c_iterator first, c_iterator last, c_iterator result) in c_copy_backward() argument
71 while(!ITER_EQUAL(first, last)) in c_copy_backward()
98 c_iterator c_uninitialized_copy(c_iterator first, c_iterator last, c_iterator result) in c_uninitialized_copy() argument
100 return c_copy(first, last, result); in c_uninitialized_copy()
103 void c_fill(c_iterator first, c_iterator last, const value_type val) in c_fill() argument
105 for(; !ITER_EQUAL(first, last); ITER_INC(first)) in c_fill()
106 ITER_REF_ASSIGN(first, val); in c_fill()
[all …]
/OK3568_Linux_fs/kernel/drivers/mfd/
H A Dab8500-debugfs.c112 u8 first; member
164 .first = 0x00,
168 .first = 0x42,
172 .first = 0x80,
181 .first = 0x00,
185 .first = 0x0F,
189 .first = 0x30,
193 .first = 0x32,
202 .first = 0x00,
206 .first = 0x03,
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/qi/numeric/
H A Dreal_policies.hpp40 parse_n(Iterator& first, Iterator const& last, Attribute& attr_) in parse_n()
42 return extract_uint<Attribute, 10, 1, -1>::call(first, last, attr_); in parse_n()
47 parse_dot(Iterator& first, Iterator const& last) in parse_dot()
49 if (first == last || *first != '.') in parse_dot()
51 ++first; in parse_dot()
57 parse_frac_n(Iterator& first, Iterator const& last, Attribute& attr_, int& frac_digits) in parse_frac_n()
59 Iterator savef = first; in parse_frac_n()
60 bool r = extract_uint<Attribute, 10, 1, -1, true, true>::call(first, last, attr_); in parse_frac_n()
67 static_cast<int>(std::distance(savef, first)); in parse_frac_n()
69 extract_uint<unused_type, 10, 1, -1>::call(first, last, unused); in parse_frac_n()
[all …]
H A Dnumeric_utils.hpp28 extract_sign(Iterator& first, Iterator const& last) in extract_sign() argument
31 BOOST_ASSERT(first != last); // precondition in extract_sign()
34 bool neg = *first == '-'; in extract_sign()
35 if (neg || (*first == '+')) in extract_sign()
37 ++first; in extract_sign()
56 inline static bool call(Iterator& first, Iterator const& last, T& attr_) in call()
58 if (first == last) in call()
71 Iterator save = first; in call()
72 if (!extract_type::parse(first, last, in call()
75 first = save; in call()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/move/algo/detail/
H A Dmerge.hpp74 RandIt rotate_gcd(RandIt first, RandIt middle, RandIt last) in rotate_gcd() argument
79 if(first == middle) in rotate_gcd()
82 return first; in rotate_gcd()
83 const size_type middle_pos = size_type(middle - first); in rotate_gcd()
86 boost::adl_move_swap_ranges(first, middle, middle); in rotate_gcd()
89 const size_type length = size_type(last - first); in rotate_gcd()
90 for( RandIt it_i(first), it_gcd(it_i + gcd(length, middle_pos)) in rotate_gcd()
100 it_k = left > middle_pos ? it_j + middle_pos : first + (middle_pos - left); in rotate_gcd()
110 (RandIt first, const RandIt last, const T& key, Compare comp) in lower_bound() argument
114 size_type len = size_type(last - first); in lower_bound()
[all …]
H A Dmerge_sort.hpp45 void inplace_stable_sort(RandIt first, RandIt last, Compare comp) in inplace_stable_sort() argument
48 if (size_type(last - first) <= size_type(MergeSortInsertionSortThreshold)) { in inplace_stable_sort()
49 insertion_sort(first, last, comp); in inplace_stable_sort()
52 RandIt middle = first + (last - first) / 2; in inplace_stable_sort()
53 inplace_stable_sort(first, middle, comp); in inplace_stable_sort()
56 (first, middle, last, size_type(middle - first), size_type(last - middle), comp); in inplace_stable_sort()
62 void merge_sort_copy( RandIt first, RandIt last in merge_sort_copy() argument
67 size_type const count = size_type(last - first); in merge_sort_copy()
69 insertion_sort_copy(first, last, dest, comp); in merge_sort_copy()
73 merge_sort_copy(first + half, last , dest+half , comp); in merge_sort_copy()
[all …]
H A Dadaptive_sort_merge.hpp100 bool is_sorted(ForwardIt const first, ForwardIt last, Pred pred) in is_sorted() argument
102 if (first != last) { in is_sorted()
103 ForwardIt next = first, cur(first); in is_sorted()
115 bool is_sorted(::order_perf_type *first, ::order_perf_type *last, ::order_type_less) in is_sorted() argument
117 if (first != last) { in is_sorted()
118 const order_perf_type *next = first, *cur(first); in is_sorted()
131 bool is_sorted_and_unique(ForwardIt first, ForwardIt last, Pred pred) in is_sorted_and_unique() argument
133 if (first != last) { in is_sorted_and_unique()
134 ForwardIt next = first; in is_sorted_and_unique()
136 if (!pred(*first, *next)) in is_sorted_and_unique()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/qi/detail/
H A Dconstruct.hpp30 call(Iterator const& first, Iterator const&, char& attr) in call()
32 attr = *first; in call()
40 call(Iterator const& first, Iterator const&, signed char& attr) in call()
42 attr = *first; in call()
50 call(Iterator const& first, Iterator const&, unsigned char& attr) in call()
52 attr = *first; in call()
61 call(Iterator const& first, Iterator const&, wchar_t& attr) in call()
63 attr = *first; in call()
73 call(Iterator const& first, Iterator const&, unsigned short& attr) in call()
75 attr = *first; in call()
[all …]
H A Dparse_auto.hpp32 static bool call(Iterator& first, Iterator last, Expr& expr) in call()
34 return qi::parse(first, last, create_parser<Expr>(), expr); in call()
38 static bool call(Iterator& first, Iterator last, Expr const& expr) in call()
40 return qi::parse(first, last, create_parser<Expr>() in call()
52 static bool call(Iterator& first, Iterator last, char& expr) in call()
54 return qi::parse(first, last, create_parser<char>(), expr); in call()
58 static bool call(Iterator& first, Iterator last, char const&) in call()
60 return qi::parse(first, last, create_parser<char>()); in call()
68 static bool call(Iterator& first, Iterator last, wchar_t& expr) in call()
70 return qi::parse(first, last, create_parser<wchar_t>(), expr); in call()
[all …]
H A Dstring_parse.hpp21 , Iterator& first, Iterator const& last, Attribute& attr) in string_parse() argument
23 Iterator i = first; in string_parse()
33 spirit::traits::assign_to(first, i, attr); in string_parse()
34 first = i; in string_parse()
41 , Iterator& first, Iterator const& last, Attribute& attr) in string_parse() argument
43 Iterator i = first; in string_parse()
50 spirit::traits::assign_to(first, i, attr); in string_parse()
51 first = i; in string_parse()
58 , Iterator& first, Iterator const& last, Attribute& attr) in string_parse() argument
60 Iterator i = first; in string_parse()
[all …]
/OK3568_Linux_fs/kernel/ipc/
H A Dsyscall.c20 int ksys_ipc(unsigned int call, int first, unsigned long second, in ksys_ipc() argument
30 return ksys_semtimedop(first, (struct sembuf __user *)ptr, in ksys_ipc()
34 return ksys_semtimedop(first, ptr, second, in ksys_ipc()
37 return compat_ksys_semtimedop(first, ptr, second, in ksys_ipc()
43 return ksys_semget(first, second, third); in ksys_ipc()
50 return ksys_old_semctl(first, second, third, arg); in ksys_ipc()
54 return ksys_msgsnd(first, (struct msgbuf __user *) ptr, in ksys_ipc()
67 return ksys_msgrcv(first, tmp.msgp, second, in ksys_ipc()
71 return ksys_msgrcv(first, in ksys_ipc()
76 return ksys_msgget((key_t) first, second); in ksys_ipc()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/strategies/
H A Dside_info.hpp42 sides[0].first = side_a1; in side_info()
44 sides[1].first = side_b1; in side_info()
49 inline void set(int first, int second) in set() argument
51 sides[Which].first = first; in set()
60 sides[Which].first = 0; in correct_to_zero()
71 return Index == 0 ? sides[Which].first : sides[Which].second; in get()
80 return sides[Which].first * sides[Which].second == 1; in same()
85 return sides[0].first == 0 in collinear()
87 && sides[1].first == 0 in collinear()
93 return sides[0].first * sides[0].second == -1 in crossing()
[all …]
/OK3568_Linux_fs/kernel/tools/power/cpupower/lib/
H A Dcpufreq.c264 struct cpufreq_available_governors *first = NULL; in cpufreq_get_available_governors() local
286 first = malloc(sizeof(*first)); in cpufreq_get_available_governors()
287 if (!first) in cpufreq_get_available_governors()
289 current = first; in cpufreq_get_available_governors()
291 current->first = first; in cpufreq_get_available_governors()
304 return first; in cpufreq_get_available_governors()
307 while (first) { in cpufreq_get_available_governors()
308 current = first->next; in cpufreq_get_available_governors()
309 if (first->governor) in cpufreq_get_available_governors()
310 free(first->governor); in cpufreq_get_available_governors()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/index/detail/
H A Dvarray_detail.hpp155 void destroy_dispatch(I first, I last, in destroy_dispatch() argument
159 for ( ; first != last ; ++first ) in destroy_dispatch()
160 first->~value_type(); in destroy_dispatch()
164 void destroy(I first, I last) in destroy() argument
167 destroy_dispatch(first, last, has_trivial_destructor<value_type>()); in destroy()
195 inline O copy_dispatch(I first, I last, O dst, in copy_dispatch() argument
199 typename boost::iterator_difference<I>::type d = std::distance(first, last); in copy_dispatch()
201 ::memmove(boost::addressof(*dst), boost::addressof(*first), sizeof(value_type) * d); in copy_dispatch()
206 inline O copy_dispatch(I first, I last, O dst, in copy_dispatch() argument
209 return std::copy(first, last, dst); // may throw in copy_dispatch()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/support/char_set/
H A Drange_functions.hpp23 return range.first <= range.last; in is_valid()
31 return (range.first <= other.first) && (range.last >= other.last); in includes()
39 return (range.first <= val) && (range.last >= val); in includes()
53 range.first == integer_traits::const_min in can_merge()
54 ? range.first : range.first-1; in can_merge()
60 return (decr_first <= other.last) && (incr_last >= other.first); in can_merge()
68 if (result.first > other.first) in merge()
69 result.first = other.first; in merge()
83 return x.first < y; in operator ()()
88 return x < y.first; in operator ()()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/qi/
H A Dparse.hpp26 Iterator& first in parse() argument
36 return detail::parse_impl<Expr>::call(first, last, expr); in parse()
46 Iterator first = first_; in parse() local
47 return qi::parse(first, last, expr); in parse()
69 Iterator& first in parse() argument
86 return compile<qi::domain>(expr).parse(first, last, context, unused, attr); in parse()
97 Iterator first = first_; in parse() local
98 return qi::parse(first, last, expr, attr); in parse()
105 Iterator& first in phrase_parse() argument
118 first, last, expr, skipper, post_skip); in phrase_parse()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/protozero/1.5.2/include/protozero/
H A Dpbf_writer.hpp100 void add_packed_fixed(pbf_tag_type tag, It first, It last, std::input_iterator_tag) { in add_packed_fixed() argument
101 if (first == last) { in add_packed_fixed()
107 while (first != last) { in add_packed_fixed()
108 sw.add_fixed<T>(*first++); in add_packed_fixed()
113 void add_packed_fixed(pbf_tag_type tag, It first, It last, std::forward_iterator_tag) { in add_packed_fixed() argument
114 if (first == last) { in add_packed_fixed()
118 const auto length = std::distance(first, last); in add_packed_fixed()
122 while (first != last) { in add_packed_fixed()
123 add_fixed<T>(*first++); in add_packed_fixed()
128 void add_packed_varint(pbf_tag_type tag, It first, It last) { in add_packed_varint() argument
[all …]
/OK3568_Linux_fs/kernel/lib/
H A Dsiphash.c117 u64 siphash_1u64(const u64 first, const siphash_key_t *key) in siphash_1u64() argument
120 v3 ^= first; in siphash_1u64()
123 v0 ^= first; in siphash_1u64()
134 u64 siphash_2u64(const u64 first, const u64 second, const siphash_key_t *key) in siphash_2u64() argument
137 v3 ^= first; in siphash_2u64()
140 v0 ^= first; in siphash_2u64()
156 u64 siphash_3u64(const u64 first, const u64 second, const u64 third, in siphash_3u64() argument
160 v3 ^= first; in siphash_3u64()
163 v0 ^= first; in siphash_3u64()
184 u64 siphash_4u64(const u64 first, const u64 second, const u64 third, in siphash_4u64() argument
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/qi/numeric/detail/
H A Dreal_impl.hpp185 parse(Iterator& first, Iterator const& last, Attribute& attr, in parse()
188 if (first == last) in parse()
190 Iterator save = first; in parse()
194 bool neg = p.parse_sign(first, last); in parse()
200 bool got_a_number = p.parse_n(first, last, acc_n); in parse()
207 if (p.parse_nan(first, last, n) || in parse()
208 p.parse_inf(first, last, n)) in parse()
219 first = save; in parse()
229 if (p.parse_dot(first, last)) in parse()
234 if (p.parse_frac_n(first, last, acc_n, frac_digits)) in parse()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/util/
H A Durl.cpp81 while (schemeEnd < query.first && isSchemeCharacter(str[schemeEnd])) ++schemeEnd; in __anon14e840fe0302()
85 auto domainPos = scheme.first + scheme.second; in __anon14e840fe0402()
86 while (domainPos < query.first && (str[domainPos] == ':' || str[domainPos] == '/')) { in __anon14e840fe0402()
89 const bool isData = str.compare(scheme.first, scheme.second, "data") == 0; in __anon14e840fe0402()
91 return { domainPos, std::min(query.first, endPos) - domainPos }; in __anon14e840fe0402()
94 auto pathPos = domain.first + domain.second; in __anon14e840fe0502()
95 const bool isData = str.compare(scheme.first, scheme.second, "data") == 0; in __anon14e840fe0502()
100 return { pathPos, query.first - pathPos }; in __anon14e840fe0502()
121 if (dotPos == std::string::npos || dotPos < directory.first + directory.second) { in __anon14e840fe0702()
127 const auto filePos = directory.first + directory.second; in __anon14e840fe0802()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/closest_feature/
H A Dpoint_to_range.hpp47 iterator_type first, in apply() argument
54 BOOST_GEOMETRY_ASSERT( first != last ); in apply()
58 iterator_type it = first; in apply()
62 it_min1 = it_min2 = first; in apply()
63 dist_min = strategy.apply(point, *first, *first); in apply()
98 iterator_type first, in apply() argument
104 apply(point, first, last, strategy, it_min1, it_min2, dist_min); in apply()
110 iterator_type first, in apply() argument
121 return apply(point, first, last, strategy, dist_min); in apply()
158 iterator_type first, in apply() argument
[all …]
/OK3568_Linux_fs/kernel/drivers/video/fbdev/core/
H A Dsysfillrect.c28 unsigned long first, last; in bitfill_aligned() local
33 first = FB_SHIFT_HIGH(p, ~0UL, dst_idx); in bitfill_aligned()
39 first &= last; in bitfill_aligned()
40 *dst = comp(pat, *dst, first); in bitfill_aligned()
45 if (first!= ~0UL) { in bitfill_aligned()
46 *dst = comp(pat, *dst, first); in bitfill_aligned()
84 unsigned long first, last; in bitfill_unaligned() local
89 first = FB_SHIFT_HIGH(p, ~0UL, dst_idx); in bitfill_unaligned()
95 first &= last; in bitfill_unaligned()
96 *dst = comp(pat, *dst, first); in bitfill_unaligned()
[all …]
/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/bits/
H A Dstl_pair.h217 _T1 first; ///< The first member in _GLIBCXX_VISIBILITY()
233 : first(), second() { } in _GLIBCXX_VISIBILITY()
246 : first(), second() { } in _GLIBCXX_VISIBILITY()
252 : first(__a), second(__b) { } in _GLIBCXX_VISIBILITY()
267 : first(__a), second(__b) { } in _GLIBCXX_VISIBILITY()
277 : first(__a), second(__b) { } in _GLIBCXX_VISIBILITY()
284 : first(__p.first), second(__p.second) { } in _GLIBCXX_VISIBILITY()
301 : first(__p.first), second(__p.second) { } in _GLIBCXX_VISIBILITY()
310 : first(__p.first), second(__p.second) { } in _GLIBCXX_VISIBILITY()
323 : first(std::forward<_U1>(__x)), second(__y) { } in _GLIBCXX_VISIBILITY()
[all …]
/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/bits/
H A Dstl_pair.h217 _T1 first; ///< The first member in _GLIBCXX_VISIBILITY()
233 : first(), second() { } in _GLIBCXX_VISIBILITY()
246 : first(), second() { } in _GLIBCXX_VISIBILITY()
252 : first(__a), second(__b) { } in _GLIBCXX_VISIBILITY()
267 : first(__a), second(__b) { } in _GLIBCXX_VISIBILITY()
277 : first(__a), second(__b) { } in _GLIBCXX_VISIBILITY()
284 : first(__p.first), second(__p.second) { } in _GLIBCXX_VISIBILITY()
301 : first(__p.first), second(__p.second) { } in _GLIBCXX_VISIBILITY()
310 : first(__p.first), second(__p.second) { } in _GLIBCXX_VISIBILITY()
323 : first(std::forward<_U1>(__x)), second(__y) { } in _GLIBCXX_VISIBILITY()
[all …]

12345678910>>...151