| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/algorithm/ |
| H A D | minmax_element.hpp | 20 * minmax_element(first, last) 21 * Effect: std::make_pair( std::min_element(first, last), 22 * std::max_element(first, last) ); 24 * minmax_element(first, last, comp) 25 * Effect: std::make_pair( std::min_element(first, last, comp), 26 * std::max_element(first, last, comp) ); 56 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() [all …]
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/ta/vector_util/ |
| H A D | c_algo.c | 62 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 D | ab8500-debugfs.c | 107 * @first: the first address of the range 112 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, [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 D | merge.hpp | 74 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 D | merge_sort.hpp | 45 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 D | adaptive_sort_merge.hpp | 100 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/geometry/index/detail/rtree/node/ |
| H A D | pairs.hpp | 20 template <typename First, typename Pointer> 24 typedef First first_type; 26 ptr_pair(First const& f, Pointer s) : first(f), second(s) {} in ptr_pair() 27 //ptr_pair(ptr_pair const& p) : first(p.first), second(p.second) {} 28 //ptr_pair & operator=(ptr_pair const& p) { first = p.first; second = p.second; return *this; } 30 first_type first; member in boost::geometry::index::detail::rtree::ptr_pair 34 template <typename First, typename Pointer> inline 35 ptr_pair<First, Pointer> 36 make_ptr_pair(First const& f, Pointer s) in make_ptr_pair() 38 return ptr_pair<First, Pointer>(f, s); in make_ptr_pair() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/fusion/algorithm/transformation/ |
| H A D | erase.hpp | 27 template <typename Sequence, typename First> 31 typedef typename convert_iterator<First>::type first_type; 42 call(First const& first, mpl::false_) in call() 44 return fusion::next(convert_iterator<First>::call(first)); in call() 49 call(First const& first, mpl::true_) in call() 51 return convert_iterator<First>::call(first); in call() 56 call(First const& first) in call() 58 return call(first, result_of::equal_to<first_type, seq_last_type>()); in call() 76 , typename First 84 typedef First FirstType; [all …]
|
| /OK3568_Linux_fs/kernel/lib/ |
| H A D | siphash.c | 114 * @first: first u64 117 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() 130 * @first: first u64 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() 151 * @first: first u64 156 u64 siphash_3u64(const u64 first, const u64 second, const u64 third, in siphash_3u64() argument [all …]
|
| /OK3568_Linux_fs/kernel/tools/power/cpupower/lib/ |
| H A D | cpufreq.c | 264 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/kernel/ipc/ |
| H A D | syscall.c | 20 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/spirit/home/qi/detail/ |
| H A D | construct.hpp | 30 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 …]
|
| /OK3568_Linux_fs/kernel/Documentation/admin-guide/ |
| H A D | devices.txt | 21 0 = /dev/ram0 First RAM disk 32 0 = /dev/ptyp0 First PTY master 107 0 = /dev/ttyp0 First PTY slave 115 3 block First MFM, RLL and IDE hard disk/CD-ROM interface 121 1 = /dev/hd?1 First partition 134 1 = /dev/tty1 First virtual console 137 64 = /dev/ttyS0 First UART serial port 192 0 = /dev/loop0 First loop device 201 0 = /dev/sda First SCSI disk whole disk 212 0 = /dev/st0 First SCSI tape, mode 0 [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 D | varray_detail.hpp | 104 // TODO - test it first 150 void destroy_dispatch(I /*first*/, I /*last*/, in destroy_dispatch() 155 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() [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 D | real_policies.hpp | 33 parse_sign(Iterator& /*first*/, Iterator const& /*last*/) in parse_sign() 40 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() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/strategies/ |
| H A D | side_info.hpp | 42 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/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/mpl/aux_/preprocessed/mwcw/ |
| H A D | iter_fold_impl.hpp | 18 , typename First 26 typename First 31 struct iter_fold_impl< 0,First,Last,State,ForwardOp > 33 typedef First iter0; 40 typename First 45 struct iter_fold_impl< 1,First,Last,State,ForwardOp > 47 typedef First iter0; 58 typename First 63 struct iter_fold_impl< 2,First,Last,State,ForwardOp > 65 typedef First iter0; [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/mpl/aux_/preprocessed/plain/ |
| H A D | iter_fold_impl.hpp | 18 , typename First 26 typename First 31 struct iter_fold_impl< 0,First,Last,State,ForwardOp > 33 typedef First iter0; 40 typename First 45 struct iter_fold_impl< 1,First,Last,State,ForwardOp > 47 typedef First iter0; 58 typename First 63 struct iter_fold_impl< 2,First,Last,State,ForwardOp > 65 typedef First iter0; [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/mpl/aux_/preprocessed/gcc/ |
| H A D | iter_fold_impl.hpp | 18 , typename First 26 typename First 31 struct iter_fold_impl< 0,First,Last,State,ForwardOp > 33 typedef First iter0; 40 typename First 45 struct iter_fold_impl< 1,First,Last,State,ForwardOp > 47 typedef First iter0; 58 typename First 63 struct iter_fold_impl< 2,First,Last,State,ForwardOp > 65 typedef First iter0; [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/mpl/aux_/preprocessed/bcc_pre590/ |
| H A D | iter_fold_impl.hpp | 18 , typename First 26 typename First 31 struct iter_fold_impl< 0,First,Last,State,ForwardOp > 33 typedef First iter0; 40 typename First 45 struct iter_fold_impl< 1,First,Last,State,ForwardOp > 47 typedef First iter0; 58 typename First 63 struct iter_fold_impl< 2,First,Last,State,ForwardOp > 65 typedef First iter0; [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/mpl/aux_/preprocessed/no_ttp/ |
| H A D | iter_fold_impl.hpp | 18 , typename First 26 typename First 31 struct iter_fold_impl< 0,First,Last,State,ForwardOp > 33 typedef First iter0; 40 typename First 45 struct iter_fold_impl< 1,First,Last,State,ForwardOp > 47 typedef First iter0; 58 typename First 63 struct iter_fold_impl< 2,First,Last,State,ForwardOp > 65 typedef First iter0; [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/mpl/aux_/preprocessed/dmc/ |
| H A D | iter_fold_impl.hpp | 18 , typename First 26 typename First 31 struct iter_fold_impl< 0,First,Last,State,ForwardOp > 33 typedef First iter0; 40 typename First 45 struct iter_fold_impl< 1,First,Last,State,ForwardOp > 47 typedef First iter0; 58 typename First 63 struct iter_fold_impl< 2,First,Last,State,ForwardOp > 65 typedef First iter0; [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/mpl/aux_/preprocessed/bcc/ |
| H A D | iter_fold_impl.hpp | 18 , typename First 26 typename First 31 struct iter_fold_impl< 0,First,Last,State,ForwardOp > 33 typedef First iter0; 40 typename First 45 struct iter_fold_impl< 1,First,Last,State,ForwardOp > 47 typedef First iter0; 58 typename First 63 struct iter_fold_impl< 2,First,Last,State,ForwardOp > 65 typedef First iter0; [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/mpl/aux_/preprocessed/bcc551/ |
| H A D | iter_fold_impl.hpp | 18 , typename First 26 typename First 31 struct iter_fold_impl< 0,First,Last,State,ForwardOp > 33 typedef First iter0; 40 typename First 45 struct iter_fold_impl< 1,First,Last,State,ForwardOp > 47 typedef First iter0; 58 typename First 63 struct iter_fold_impl< 2,First,Last,State,ForwardOp > 65 typedef First iter0; [all …]
|
| H A D | fold_impl.hpp | 18 , typename First 26 typename First 31 struct fold_impl< 0,First,Last,State,ForwardOp > 33 typedef First iter0; 40 typename First 45 struct fold_impl< 1,First,Last,State,ForwardOp > 47 typedef First iter0; 58 typename First 63 struct fold_impl< 2,First,Last,State,ForwardOp > 65 typedef First iter0; [all …]
|