Home
last modified time | relevance | path

Searched full:last (Results 1 – 25 of 7870) sorted by relevance

12345678910>>...315

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/algorithm/
H A Dminmax_element.hpp20 * 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()
59 return std::make_pair(last,last); in basic_minmax_element()
66 if (second == last) in basic_minmax_element()
[all …]
/OK3568_Linux_fs/kernel/drivers/mfd/
H A Dab8500-debugfs.c108 * @last: the last address of the range
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,
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/mpl/aux_/
H A Dfold_impl_body.hpp55 , typename Last
73 , typename Last
82 , Last
90 , Last
102 , typename Last
106 struct AUX778076_FOLD_IMPL_NAME<-1,First,Last,State,ForwardOp>
110 , Last
118 typename Last
122 struct AUX778076_FOLD_IMPL_NAME<-1,Last,Last,State,ForwardOp>
125 typedef Last iterator;
[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
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 …]
/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()
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 Dtouch.c54 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/kernel/drivers/vhost/
H A Diotlb.c17 #define LAST(map) ((map)->last) macro
21 START, LAST, static inline, vhost_iotlb_itree);
42 * @last: last of IOVA range
46 * Returns an error last is smaller than start or memory allocation
50 u64 start, u64 last, in vhost_iotlb_add_range() argument
55 if (last < start) in vhost_iotlb_add_range()
70 map->size = last - start + 1; in vhost_iotlb_add_range()
71 map->last = last; in vhost_iotlb_add_range()
89 * @last: last of IOVA range
91 void vhost_iotlb_del_range(struct vhost_iotlb *iotlb, u64 start, u64 last) in vhost_iotlb_del_range() argument
[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 Diter_fold_impl.hpp19 , typename Last
27 , typename Last
31 struct iter_fold_impl< 0,First,Last,State,ForwardOp >
41 , typename Last
45 struct iter_fold_impl< 1,First,Last,State,ForwardOp >
59 , typename Last
63 struct iter_fold_impl< 2,First,Last,State,ForwardOp >
79 , typename Last
83 struct iter_fold_impl< 3,First,Last,State,ForwardOp >
101 , typename Last
[all …]
H A Dfold_impl.hpp19 , typename Last
27 , typename Last
31 struct fold_impl< 0,First,Last,State,ForwardOp >
41 , typename Last
45 struct fold_impl< 1,First,Last,State,ForwardOp >
59 , typename Last
63 struct fold_impl< 2,First,Last,State,ForwardOp >
79 , typename Last
83 struct fold_impl< 3,First,Last,State,ForwardOp >
101 , typename Last
[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 Diter_fold_impl.hpp19 , typename Last
27 , typename Last
31 struct iter_fold_impl< 0,First,Last,State,ForwardOp >
41 , typename Last
45 struct iter_fold_impl< 1,First,Last,State,ForwardOp >
59 , typename Last
63 struct iter_fold_impl< 2,First,Last,State,ForwardOp >
79 , typename Last
83 struct iter_fold_impl< 3,First,Last,State,ForwardOp >
101 , typename Last
[all …]
H A Dfold_impl.hpp19 , typename Last
27 , typename Last
31 struct fold_impl< 0,First,Last,State,ForwardOp >
41 , typename Last
45 struct fold_impl< 1,First,Last,State,ForwardOp >
59 , typename Last
63 struct fold_impl< 2,First,Last,State,ForwardOp >
79 , typename Last
83 struct fold_impl< 3,First,Last,State,ForwardOp >
101 , typename Last
[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 Diter_fold_impl.hpp19 , typename Last
27 , typename Last
31 struct iter_fold_impl< 0,First,Last,State,ForwardOp >
41 , typename Last
45 struct iter_fold_impl< 1,First,Last,State,ForwardOp >
59 , typename Last
63 struct iter_fold_impl< 2,First,Last,State,ForwardOp >
79 , typename Last
83 struct iter_fold_impl< 3,First,Last,State,ForwardOp >
101 , typename Last
[all …]
H A Dfold_impl.hpp19 , typename Last
27 , typename Last
31 struct fold_impl< 0,First,Last,State,ForwardOp >
41 , typename Last
45 struct fold_impl< 1,First,Last,State,ForwardOp >
59 , typename Last
63 struct fold_impl< 2,First,Last,State,ForwardOp >
79 , typename Last
83 struct fold_impl< 3,First,Last,State,ForwardOp >
101 , typename Last
[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 Diter_fold_impl.hpp19 , typename Last
27 , typename Last
31 struct iter_fold_impl< 0,First,Last,State,ForwardOp >
41 , typename Last
45 struct iter_fold_impl< 1,First,Last,State,ForwardOp >
59 , typename Last
63 struct iter_fold_impl< 2,First,Last,State,ForwardOp >
79 , typename Last
83 struct iter_fold_impl< 3,First,Last,State,ForwardOp >
101 , typename Last
[all …]
H A Dfold_impl.hpp19 , typename Last
27 , typename Last
31 struct fold_impl< 0,First,Last,State,ForwardOp >
41 , typename Last
45 struct fold_impl< 1,First,Last,State,ForwardOp >
59 , typename Last
63 struct fold_impl< 2,First,Last,State,ForwardOp >
79 , typename Last
83 struct fold_impl< 3,First,Last,State,ForwardOp >
101 , typename Last
[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 Diter_fold_impl.hpp19 , typename Last
27 , typename Last
31 struct iter_fold_impl< 0,First,Last,State,ForwardOp >
41 , typename Last
45 struct iter_fold_impl< 1,First,Last,State,ForwardOp >
59 , typename Last
63 struct iter_fold_impl< 2,First,Last,State,ForwardOp >
79 , typename Last
83 struct iter_fold_impl< 3,First,Last,State,ForwardOp >
101 , typename Last
[all …]
H A Dfold_impl.hpp19 , typename Last
27 , typename Last
31 struct fold_impl< 0,First,Last,State,ForwardOp >
41 , typename Last
45 struct fold_impl< 1,First,Last,State,ForwardOp >
59 , typename Last
63 struct fold_impl< 2,First,Last,State,ForwardOp >
79 , typename Last
83 struct fold_impl< 3,First,Last,State,ForwardOp >
101 , typename Last
[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 Diter_fold_impl.hpp19 , typename Last
27 , typename Last
31 struct iter_fold_impl< 0,First,Last,State,ForwardOp >
41 , typename Last
45 struct iter_fold_impl< 1,First,Last,State,ForwardOp >
59 , typename Last
63 struct iter_fold_impl< 2,First,Last,State,ForwardOp >
79 , typename Last
83 struct iter_fold_impl< 3,First,Last,State,ForwardOp >
101 , typename Last
[all …]
H A Dfold_impl.hpp19 , typename Last
27 , typename Last
31 struct fold_impl< 0,First,Last,State,ForwardOp >
41 , typename Last
45 struct fold_impl< 1,First,Last,State,ForwardOp >
59 , typename Last
63 struct fold_impl< 2,First,Last,State,ForwardOp >
79 , typename Last
83 struct fold_impl< 3,First,Last,State,ForwardOp >
101 , typename Last
[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 Diter_fold_impl.hpp19 , typename Last
27 , typename Last
31 struct iter_fold_impl< 0,First,Last,State,ForwardOp >
41 , typename Last
45 struct iter_fold_impl< 1,First,Last,State,ForwardOp >
59 , typename Last
63 struct iter_fold_impl< 2,First,Last,State,ForwardOp >
79 , typename Last
83 struct iter_fold_impl< 3,First,Last,State,ForwardOp >
101 , typename Last
[all …]
H A Dfold_impl.hpp19 , typename Last
27 , typename Last
31 struct fold_impl< 0,First,Last,State,ForwardOp >
41 , typename Last
45 struct fold_impl< 1,First,Last,State,ForwardOp >
59 , typename Last
63 struct fold_impl< 2,First,Last,State,ForwardOp >
79 , typename Last
83 struct fold_impl< 3,First,Last,State,ForwardOp >
101 , typename Last
[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 Diter_fold_impl.hpp19 , typename Last
27 , typename Last
31 struct iter_fold_impl< 0,First,Last,State,ForwardOp >
41 , typename Last
45 struct iter_fold_impl< 1,First,Last,State,ForwardOp >
59 , typename Last
63 struct iter_fold_impl< 2,First,Last,State,ForwardOp >
79 , typename Last
83 struct iter_fold_impl< 3,First,Last,State,ForwardOp >
101 , typename Last
[all …]
H A Dfold_impl.hpp19 , typename Last
27 , typename Last
31 struct fold_impl< 0,First,Last,State,ForwardOp >
41 , typename Last
45 struct fold_impl< 1,First,Last,State,ForwardOp >
59 , typename Last
63 struct fold_impl< 2,First,Last,State,ForwardOp >
79 , typename Last
83 struct fold_impl< 3,First,Last,State,ForwardOp >
101 , typename Last
[all …]
/OK3568_Linux_fs/kernel/arch/xtensa/kernel/
H A Dvmlinux.lds.S226 #undef LAST
227 #define LAST .dummy macro
240 #undef LAST
241 #define LAST .DebugInterruptVector.text macro
246 LAST)
247 # undef LAST
248 # define LAST .Level2InterruptVector.text macro
254 LAST)
255 # undef LAST
256 # define LAST .Level3InterruptVector.text macro
[all …]
/OK3568_Linux_fs/kernel/drivers/infiniband/hw/usnic/
H A Dusnic_uiom_interval_tree.c43 #define LAST(node) ((node)->last) macro
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 …]

12345678910>>...315