| /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 | 56 basic_minmax_element(ForwardIter first, ForwardIter last, Compare comp) in basic_minmax_element() argument 58 if (first == last) in basic_minmax_element() 59 return std::make_pair(last,last); in basic_minmax_element() 66 if (second == last) in basic_minmax_element() 70 ForwardIter potential_min_result = last; in basic_minmax_element() 79 first = ++second; if (first != last) ++second; in basic_minmax_element() 80 while (second != last) { in basic_minmax_element() 84 potential_min_result = last; in basic_minmax_element() 97 if (first != last) ++second; in basic_minmax_element() 101 if (first != last) { // odd number of elements in basic_minmax_element() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/mfd/ |
| H A D | ab8500-debugfs.c | 113 u8 last; member 165 .last = 0x02, 169 .last = 0x42, 173 .last = 0x81, 182 .last = 0x0D, 186 .last = 0x17, 190 .last = 0x30, 194 .last = 0x33, 203 .last = 0x00, 207 .last = 0x10, [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 | parse_auto.hpp | 32 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 D | construct.hpp | 84 call(Iterator const& first, Iterator const& last, bool& attr) in call() 87 qi::parse(first_, last, bool_type(), attr); in call() 95 call(Iterator const& first, Iterator const& last, short& attr) in call() 98 qi::parse(first_, last, short_type(), attr); in call() 106 call(Iterator const& first, Iterator const& last, int& attr) in call() 109 qi::parse(first_, last, int_type(), attr); in call() 116 call(Iterator const& first, Iterator const& last, unsigned int& attr) in call() 119 qi::parse(first_, last, uint_type(), attr); in call() 127 call(Iterator const& first, Iterator const& last, long& attr) in call() 130 qi::parse(first_, last, long_type(), attr); in call() [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 | 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() 57 parse_frac_n(Iterator& first, Iterator const& last, Attribute& attr_, int& frac_digits) in parse_frac_n() 60 bool r = extract_uint<Attribute, 10, 1, -1, true, true>::call(first, last, attr_); in parse_frac_n() 69 extract_uint<unused_type, 10, 1, -1>::call(first, last, unused); in parse_frac_n() 76 parse_exp(Iterator& first, Iterator const& last) in parse_exp() 78 if (first == last || (*first != 'e' && *first != 'E')) in parse_exp() 86 parse_exp_n(Iterator& first, Iterator const& last, int& attr_) in parse_exp_n() [all …]
|
| H A D | numeric_utils.hpp | 28 extract_sign(Iterator& first, Iterator const& last) in extract_sign() argument 30 (void)last; // silence unused warnings in extract_sign() 31 BOOST_ASSERT(first != last); // precondition in extract_sign() 56 inline static bool call(Iterator& first, Iterator const& last, T& attr_) in call() 58 if (first == last) in call() 72 if (!extract_type::parse(first, last, in call() 82 inline static bool call(Iterator& first, Iterator const& last, Attribute& attr_) in call() 86 if (call(first, last, attr_local)) in call() 107 inline static bool call(Iterator& first, Iterator const& last, T& attr_) in call() 109 if (first == last) 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 D | merge.hpp | 74 RandIt rotate_gcd(RandIt first, RandIt middle, RandIt last) in rotate_gcd() argument 80 return last; in rotate_gcd() 81 if(middle == last) in rotate_gcd() 84 RandIt ret = last - middle_pos; in rotate_gcd() 89 const size_type length = size_type(last - first); in rotate_gcd() 99 size_type const left = size_type(last - it_j); 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() 135 (RandIt first, const RandIt last, const T& key, Compare comp) in upper_bound() argument 139 size_type len = size_type(last - first); in upper_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() 54 inplace_stable_sort(middle, last, 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 …]
|
| /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() 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() 74 ITER_DEC(last); in c_copy_backward() 75 ITER_REF_ASSIGN(result, ITER_REF(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() [all …]
|
| /OK3568_Linux_fs/external/xserver/test/ |
| H A D | touch.c | 54 dev.last.num_touches = size; in touch_grow_queue() 55 dev.last.touches = calloc(dev.last.num_touches, sizeof(*dev.last.touches)); in touch_grow_queue() 56 assert(dev.last.touches); in touch_grow_queue() 58 dev.last.touches[i].active = TRUE; in touch_grow_queue() 59 dev.last.touches[i].ddx_id = i; in touch_grow_queue() 60 dev.last.touches[i].client_id = i * 2; in touch_grow_queue() 67 assert(dev.last.num_touches == new_size); in touch_grow_queue() 71 DDXTouchPointInfoPtr t = &dev.last.touches[i]; in touch_grow_queue() 78 assert(dev.last.touches[size].active == TRUE); in touch_grow_queue() 79 assert(dev.last.touches[size].ddx_id == 1234); in touch_grow_queue() [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 | 155 void destroy_dispatch(I first, I last, in destroy_dispatch() argument 159 for ( ; first != last ; ++first ) 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() 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() 213 inline O copy(I first, I last, O dst) in copy() argument 224 return copy_dispatch(first, last, dst, use_memmove()); // may throw in copy() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/infiniband/hw/usnic/ |
| H A D | usnic_uiom_interval_tree.c | 43 #define LAST(node) ((node)->last) 70 usnic_uiom_interval_node_alloc(long int start, long int last, int ref_cnt, in usnic_uiom_interval_node_alloc() argument 79 interval->last = last; in usnic_uiom_interval_node_alloc() 104 unsigned long start, unsigned long last, in find_intervals_intersection_sorted() argument 111 for (node = usnic_uiom_interval_tree_iter_first(root, start, last); in find_intervals_intersection_sorted() 113 node = usnic_uiom_interval_tree_iter_next(node, start, last)) in find_intervals_intersection_sorted() 119 int usnic_uiom_get_intervals_diff(unsigned long start, unsigned long last, in usnic_uiom_get_intervals_diff() argument 131 find_intervals_intersection_sorted(root, start, last, in usnic_uiom_get_intervals_diff() 147 if (pivot > interval->last) { in usnic_uiom_get_intervals_diff() 149 } else if (pivot <= interval->last && in usnic_uiom_get_intervals_diff() [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 D | parse.hpp | 27 , Iterator last in parse() argument 36 return detail::parse_impl<Expr>::call(first, last, expr); in parse() 43 , Iterator last in parse() argument 47 return qi::parse(first, last, expr); in parse() 70 , Iterator last in parse() argument 86 return compile<qi::domain>(expr).parse(first, last, context, unused, attr); in parse() 93 , Iterator last in parse() argument 98 return qi::parse(first, last, expr, attr); in parse() 106 , Iterator last in phrase_parse() argument 118 first, last, expr, skipper, post_skip); in phrase_parse() [all …]
|
| /OK3568_Linux_fs/kernel/arch/um/kernel/ |
| H A D | tlb.c | 125 struct host_vm_op *last; in add_mmap() local 136 last = &hvc->ops[hvc->index - 1]; in add_mmap() 137 if ((last->type == MMAP) && in add_mmap() 138 (last->u.mmap.addr + last->u.mmap.len == virt) && in add_mmap() 139 (last->u.mmap.prot == prot) && (last->u.mmap.fd == fd) && in add_mmap() 140 (last->u.mmap.offset + last->u.mmap.len == offset)) { in add_mmap() 141 last->u.mmap.len += len; in add_mmap() 165 struct host_vm_op *last; in add_munmap() local 172 last = &hvc->ops[hvc->index - 1]; in add_munmap() 173 if ((last->type == MUNMAP) && in add_munmap() [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 D | range_run_impl.hpp | 33 while (i != run.end() && i->last <= iter->last) in try_merge() 36 if (i != run.end() && i->first-1 <= iter->last) in try_merge() 38 iter->last = i->last; in try_merge() 140 if (left_iter->last > range.last) in clear() 142 Char save_last = left_iter->last; in clear() 143 left_iter->last = range.first-1; in clear() 144 run.insert(iter, range_type(range.last+1, save_last)); in clear() 149 else if (left_iter->last >= range.first) in clear() 151 left_iter->last = range.first-1; in clear() 166 while (i != run.end() && i->last <= range.last) in clear() [all …]
|
| H A D | range_functions.hpp | 23 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() 57 range.last == integer_traits::const_max in can_merge() 58 ? range.last : range.last+1; in can_merge() 60 return (decr_first <= other.last) && (incr_last >= other.first); in can_merge() 70 if (result.last < other.last) in merge() 71 result.last = other.last; in merge()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/protozero/1.5.2/include/protozero/ |
| H A D | pbf_writer.hpp | 100 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() 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() 128 void add_packed_varint(pbf_tag_type tag, It first, It last) { in add_packed_varint() argument 129 if (first == last) { in add_packed_varint() 135 while (first != last) { in add_packed_varint() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/declarativemaps/ |
| H A D | qgeosimplify.cpp | 101 …st QList<QGeoCoordinate> &points, const double &leftBound, int first, int last, double offsetToler… in simplifyDPStep() argument 106 for (int i = first + 1; i < last; i++) { in simplifyDPStep() 109 points.at(last), in simplifyDPStep() 127 if (last - index > 1) in simplifyDPStep() 131 last, in simplifyDPStep() 150 int last, in simplifyDPStep() argument 157 for (int i = first + 1; i < last; i++) { in simplifyDPStep() 160 points.at(last), in simplifyDPStep() 178 if (last - index > 1) in simplifyDPStep() 182 last, in simplifyDPStep() [all …]
|
| /OK3568_Linux_fs/kernel/arch/mips/sibyte/common/ |
| H A D | cfe_console.c | 16 int i, last, written; in cfe_console_write() local 18 for (i=0, last=0; i<count; i++) { in cfe_console_write() 24 written = cfe_write(cfe_cons_handle, &str[last], i-last); in cfe_console_write() 27 last += written; in cfe_console_write() 28 } while (last < i); in cfe_console_write() 33 if (last != count) { in cfe_console_write() 35 written = cfe_write(cfe_cons_handle, &str[last], count-last); in cfe_console_write() 38 last += written; in cfe_console_write() 39 } while (last < count); in cfe_console_write()
|
| /OK3568_Linux_fs/kernel/drivers/video/fbdev/core/ |
| H A D | sysfillrect.c | 28 unsigned long first, last; in bitfill_aligned() local 34 last = ~(FB_SHIFT_HIGH(p, ~0UL, (dst_idx+n) % bits)); in bitfill_aligned() 38 if (last) in bitfill_aligned() 39 first &= last; in bitfill_aligned() 67 if (last) in bitfill_aligned() 68 *dst = comp(pat, *dst, last); in bitfill_aligned() 84 unsigned long first, last; in bitfill_unaligned() local 90 last = ~(FB_SHIFT_HIGH(p, ~0UL, (dst_idx+n) % bits)); in bitfill_unaligned() 94 if (last) in bitfill_unaligned() 95 first &= last; in bitfill_unaligned() [all …]
|
| H A D | cfbfillrect.c | 38 unsigned long first, last; in bitfill_aligned() local 44 last = ~fb_shifted_pixels_mask_long(p, (dst_idx+n) % bits, bswapmask); in bitfill_aligned() 48 if (last) in bitfill_aligned() 49 first &= last; in bitfill_aligned() 78 if (last) in bitfill_aligned() 79 FB_WRITEL(comp(pat, FB_READL(dst), last), dst); in bitfill_aligned() 95 unsigned long first, last; in bitfill_unaligned() local 101 last = ~(FB_SHIFT_HIGH(p, ~0UL, (dst_idx+n) % bits)); in bitfill_unaligned() 105 if (last) in bitfill_unaligned() 106 first &= last; in bitfill_unaligned() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/iostreams/detail/adapter/ |
| H A D | range_adapter.hpp | 64 range_adapter(iterator first, iterator last); 79 range_adapter<Mode, Range>::range_adapter(iterator first, iterator last) in range_adapter() argument 80 : first_(first), cur_(first), last_(last) { } in range_adapter() 107 (Iter& cur, Iter& last, Ch* s,std::streamsize n) in read() 110 while (cur != last && rem-- > 0) *s++ = *cur++; in read() 116 (Iter& cur, Iter& last, const Ch* s, std::streamsize n) in write() 118 while (cur != last && n-- > 0) *cur++ = *s++; in write() 119 if (cur == last && n > 0) in write() 129 (Iter& cur, Iter& last, Ch* s,std::streamsize n) in read() 132 (std::min)(static_cast<std::streamsize>(last - cur), n); in read() [all …]
|
| /OK3568_Linux_fs/kernel/lib/math/ |
| H A D | prime_numbers.c | 13 unsigned long last, sz; member 19 .last = 61, 44 .last = 31, 135 if (x < p->last) { in expand_to_next_prime() 147 new->last = clear_multiples(y, new->primes, p->sz, sz); in expand_to_next_prime() 150 BUG_ON(new->last <= x); in expand_to_next_prime() 194 while (x >= p->last) { in next_prime_number() 203 x = find_next_bit(p->primes, p->last, x + 1); in next_prime_number() 257 p->last, p->sz, p->primes[BITS_TO_LONGS(p->sz) - 1], buf); in dump_primes() 266 unsigned long x, last; in selftest() local [all …]
|
| /OK3568_Linux_fs/kernel/tools/perf/util/ |
| H A D | ordered-events.c | 20 struct ordered_event *last = oe->last; in queue_event() local 25 oe->last = new; in queue_event() 29 if (!last) { in queue_event() 40 if (last->timestamp <= timestamp) { in queue_event() 41 while (last->timestamp <= timestamp) { in queue_event() 42 p = last->list.next; in queue_event() 48 last = list_entry(p, struct ordered_event, list); in queue_event() 50 list_add_tail(&new->list, &last->list); in queue_event() 52 while (last->timestamp > timestamp) { in queue_event() 53 p = last->list.prev; in queue_event() [all …]
|
| /OK3568_Linux_fs/kernel/io_uring/ |
| H A D | io-wq.h | 40 struct io_wq_work_node *last; member 52 list->last = node; in wq_list_add_after() 60 list->last = node; in wq_list_add_tail() 63 list->last->next = node; in wq_list_add_tail() 64 list->last = node; in wq_list_add_tail() 69 struct io_wq_work_node *last, in wq_list_cut() argument 74 WRITE_ONCE(list->first, last->next); in wq_list_cut() 76 prev->next = last->next; in wq_list_cut() 78 if (last == list->last) in wq_list_cut() 79 list->last = prev; in wq_list_cut() [all …]
|