Home
last modified time | relevance | path

Searched refs:other (Results 1 – 25 of 4789) sorted by relevance

12345678910>>...192

/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/
H A Dprofile-count.h318 bool operator== (const profile_probability &other) const in class()
320 return m_val == other.m_val && m_quality == other.m_quality; in class()
323 profile_probability operator+ (const profile_probability &other) const in class()
325 if (other == never ()) in class()
328 return other; in class()
329 if (!initialized_p () || !other.initialized_p ()) in class()
333 ret.m_val = MIN ((uint32_t)(m_val + other.m_val), max_probability); in class()
334 ret.m_quality = MIN (m_quality, other.m_quality); in class()
338 profile_probability &operator+= (const profile_probability &other) in class()
340 if (other == never ()) in class()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/
H A Dprofile-count.h318 bool operator== (const profile_probability &other) const in class()
320 return m_val == other.m_val && m_quality == other.m_quality; in class()
323 profile_probability operator+ (const profile_probability &other) const in class()
325 if (other == never ()) in class()
328 return other; in class()
329 if (!initialized_p () || !other.initialized_p ()) in class()
333 ret.m_val = MIN ((uint32_t)(m_val + other.m_val), max_probability); in class()
334 ret.m_quality = MIN (m_quality, other.m_quality); in class()
338 profile_probability &operator+= (const profile_probability &other) in class()
340 if (other == never ()) in class()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/places/
H A Dqplacesearchrequest.cpp57 QPlaceSearchRequestPrivate::QPlaceSearchRequestPrivate(const QPlaceSearchRequestPrivate &other) in QPlaceSearchRequestPrivate() argument
58 : QSharedData(other), in QPlaceSearchRequestPrivate()
59 searchTerm(other.searchTerm), in QPlaceSearchRequestPrivate()
60 categories(other.categories), in QPlaceSearchRequestPrivate()
61 searchArea(other.searchArea), in QPlaceSearchRequestPrivate()
62 recommendationId(other.recommendationId), in QPlaceSearchRequestPrivate()
63 visibilityScope(other.visibilityScope), in QPlaceSearchRequestPrivate()
64 relevanceHint(other.relevanceHint), in QPlaceSearchRequestPrivate()
65 limit(other.limit), in QPlaceSearchRequestPrivate()
66 searchContext(other.searchContext), in QPlaceSearchRequestPrivate()
[all …]
H A Dqplacecategory.cpp47 QPlaceCategoryPrivate::QPlaceCategoryPrivate(const QPlaceCategoryPrivate &other) in QPlaceCategoryPrivate() argument
48 : QSharedData(other), categoryId(other.categoryId), name(other.name), visibility(other.visibility… in QPlaceCategoryPrivate()
49 icon(other.icon) in QPlaceCategoryPrivate()
57 QPlaceCategoryPrivate &QPlaceCategoryPrivate::operator=(const QPlaceCategoryPrivate &other) in operator =() argument
59 if (this == &other) in operator =()
62 categoryId = other.categoryId; in operator =()
63 name = other.name; in operator =()
64 icon = other.icon; in operator =()
111 QPlaceCategory::QPlaceCategory(const QPlaceCategory &other) in QPlaceCategory() argument
112 :d(other.d) in QPlaceCategory()
[all …]
H A Dqplacematchrequest.cpp49 QPlaceMatchRequestPrivate(const QPlaceMatchRequestPrivate &other);
52 QPlaceMatchRequestPrivate &operator=(const QPlaceMatchRequestPrivate &other);
53 bool operator==(const QPlaceMatchRequestPrivate &other) const;
66 QPlaceMatchRequestPrivate::QPlaceMatchRequestPrivate(const QPlaceMatchRequestPrivate &other) in QPlaceMatchRequestPrivate() argument
67 : QSharedData(other), in QPlaceMatchRequestPrivate()
68 places(other.places), in QPlaceMatchRequestPrivate()
69 parameters(other.parameters) in QPlaceMatchRequestPrivate()
77 …ceMatchRequestPrivate &QPlaceMatchRequestPrivate::operator=(const QPlaceMatchRequestPrivate &other) in operator =() argument
79 if (this != &other) { in operator =()
80 places = other.places; in operator =()
[all …]
H A Dqplace.cpp147 QPlace::QPlace(const QPlace &other) in QPlace() argument
148 : d_ptr(other.d_ptr) in QPlace()
163 QPlace &QPlace::operator= (const QPlace & other) in operator =() argument
165 if (this == &other) in operator =()
168 d_ptr = other.d_ptr; in operator =()
186 bool QPlace::operator== (const QPlace &other) const in operator ==()
188 return ( (d_ptr.constData() == other.d_ptr.constData()) in operator ==()
189 || (*d_ptr) == (*other.d_ptr)); in operator ==()
196 bool QPlace::operator!= (const QPlace &other) const in operator !=()
198 return !(operator==(other)); in operator !=()
[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/ext/pb_ds/detail/ov_tree_map_/
H A Dsplit_join_fn_imps.hpp46 split(key_const_reference r_key, PB_DS_CLASS_C_DEC& other) in split() argument
49 PB_DS_ASSERT_VALID(other) in split()
53 other.clear(); in split()
59 value_swap(other); in split()
61 PB_DS_ASSERT_VALID(other) in split()
72 value_swap(other); in split()
74 PB_DS_ASSERT_VALID(other) in split()
79 PB_DS_CLASS_C_DEC new_other(other, other); in split()
85 other.update(other.node_begin(), (node_update*)(&other)); in split()
87 other.value_swap(new_other); in split()
[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/ext/pb_ds/detail/ov_tree_map_/
H A Dsplit_join_fn_imps.hpp46 split(key_const_reference r_key, PB_DS_CLASS_C_DEC& other) in split() argument
49 PB_DS_ASSERT_VALID(other) in split()
53 other.clear(); in split()
59 value_swap(other); in split()
61 PB_DS_ASSERT_VALID(other) in split()
72 value_swap(other); in split()
74 PB_DS_ASSERT_VALID(other) in split()
79 PB_DS_CLASS_C_DEC new_other(other, other); in split()
85 other.update(other.node_begin(), (node_update*)(&other)); in split()
87 other.value_swap(new_other); in split()
[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/ext/pb_ds/detail/bin_search_tree_/
H A Dsplit_join_fn_imps.hpp46 join_prep(PB_DS_CLASS_C_DEC& other) in join_prep() argument
49 PB_DS_ASSERT_VALID(other) in join_prep()
50 if (other.m_size == 0) in join_prep()
55 value_swap(other); in join_prep()
61 PB_DS_V2F(other.m_p_head->m_p_left->m_value)); in join_prep()
64 Cmp_Fn::operator()(PB_DS_V2F(other.m_p_head->m_p_right->m_value), in join_prep()
71 value_swap(other); in join_prep()
73 m_size += other.m_size; in join_prep()
74 _GLIBCXX_DEBUG_ONLY(debug_base::join(other);) in join_prep()
81 join_finish(PB_DS_CLASS_C_DEC& other) in join_finish() argument
[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/ext/pb_ds/detail/bin_search_tree_/
H A Dsplit_join_fn_imps.hpp46 join_prep(PB_DS_CLASS_C_DEC& other) in join_prep() argument
49 PB_DS_ASSERT_VALID(other) in join_prep()
50 if (other.m_size == 0) in join_prep()
55 value_swap(other); in join_prep()
61 PB_DS_V2F(other.m_p_head->m_p_left->m_value)); in join_prep()
64 Cmp_Fn::operator()(PB_DS_V2F(other.m_p_head->m_p_right->m_value), in join_prep()
71 value_swap(other); in join_prep()
73 m_size += other.m_size; in join_prep()
74 _GLIBCXX_DEBUG_ONLY(debug_base::join(other);) in join_prep()
81 join_finish(PB_DS_CLASS_C_DEC& other) in join_finish() argument
[all …]
/OK3568_Linux_fs/kernel/drivers/input/touchscreen/
H A Dgsl_point_id.c92 }other; member
111 }other; member
130 }other; member
147 }other; member
190 }other; member
338 }other; member
572 if(global_state.other.ex) in PointCoor()
606 if (point_now[i].other.key) in PointRepeat()
608 x_min = point_now[i].other.x - pn; in PointRepeat()
609 x_max = point_now[i].other.x + pn; in PointRepeat()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/maps/
H A Dqgeomaptype.cpp45 QGeoMapType::QGeoMapType(const QGeoMapType &other) in QGeoMapType() argument
46 : d_ptr(other.d_ptr) {} in QGeoMapType()
59 QGeoMapType &QGeoMapType::operator = (const QGeoMapType &other) in operator =() argument
61 if (this == &other) in operator =()
64 d_ptr = other.d_ptr; in operator =()
68 bool QGeoMapType::operator == (const QGeoMapType &other) const in operator ==()
70 return (*d_ptr.constData() == *other.d_ptr.constData()); in operator ==()
73 bool QGeoMapType::operator != (const QGeoMapType &other) const in operator !=()
75 return !(operator ==(other)); in operator !=()
128 QGeoMapTypePrivate::QGeoMapTypePrivate(const QGeoMapTypePrivate &other) in QGeoMapTypePrivate() argument
[all …]
H A Dqgeocameracapabilities.cpp55 QGeoCameraCapabilitiesPrivate(const QGeoCameraCapabilitiesPrivate &other);
58 QGeoCameraCapabilitiesPrivate &operator = (const QGeoCameraCapabilitiesPrivate &other);
95 …ameraCapabilitiesPrivate::QGeoCameraCapabilitiesPrivate(const QGeoCameraCapabilitiesPrivate &other) in QGeoCameraCapabilitiesPrivate() argument
96 : QSharedData(other), in QGeoCameraCapabilitiesPrivate()
97 supportsBearing_(other.supportsBearing_), in QGeoCameraCapabilitiesPrivate()
98 supportsRolling_(other.supportsRolling_), in QGeoCameraCapabilitiesPrivate()
99 supportsTilting_(other.supportsTilting_), in QGeoCameraCapabilitiesPrivate()
100 valid_(other.valid_), in QGeoCameraCapabilitiesPrivate()
101 minZoom_(other.minZoom_), in QGeoCameraCapabilitiesPrivate()
102 maxZoom_(other.maxZoom_), in QGeoCameraCapabilitiesPrivate()
[all …]
H A Dqgeorouterequest.cpp240 QGeoRouteRequest::QGeoRouteRequest(const QGeoRouteRequest &other) in QGeoRouteRequest() argument
241 : d_ptr(other.d_ptr) {} in QGeoRouteRequest()
252 QGeoRouteRequest &QGeoRouteRequest::operator= (const QGeoRouteRequest & other) in operator =() argument
254 if (this == &other) in operator =()
257 d_ptr = other.d_ptr; in operator =()
264 bool QGeoRouteRequest::operator ==(const QGeoRouteRequest &other) const in operator ==()
266 return ( (d_ptr.constData() == other.d_ptr.constData()) in operator ==()
267 || (*d_ptr) == (*other.d_ptr)); in operator ==()
273 bool QGeoRouteRequest::operator !=(const QGeoRouteRequest &other) const in operator !=()
275 return !(operator==(other)); in operator !=()
[all …]
H A Dqgeoroute.cpp106 QGeoRoute::QGeoRoute(const QGeoRoute &other) in QGeoRoute() argument
107 : d_ptr(other.d_ptr) {} in QGeoRoute()
120 QGeoRoute &QGeoRoute::operator= (const QGeoRoute & other) in operator =() argument
122 if (this == &other) in operator =()
125 d_ptr = other.d_ptr; in operator =()
132 bool QGeoRoute::operator ==(const QGeoRoute &other) const in operator ==()
134 return ( (d_ptr.constData() == other.d_ptr.constData()) in operator ==()
135 || (*d_ptr) == (*other.d_ptr)); in operator ==()
141 bool QGeoRoute::operator !=(const QGeoRoute &other) const in operator !=()
143 return !(operator==(other)); in operator !=()
[all …]
H A Dqgeoroutesegment.cpp81 QGeoRouteSegment::QGeoRouteSegment(const QGeoRouteSegment &other) in QGeoRouteSegment() argument
82 : d_ptr(other.d_ptr) {} in QGeoRouteSegment()
108 QGeoRouteSegment &QGeoRouteSegment::operator= (const QGeoRouteSegment & other) in operator =() argument
110 if (this == &other) in operator =()
113 d_ptr = other.d_ptr; in operator =()
122 bool QGeoRouteSegment::operator ==(const QGeoRouteSegment &other) const in operator ==()
124 return ( (d_ptr.constData() == other.d_ptr.constData()) in operator ==()
125 || (*d_ptr) == (*other.d_ptr)); in operator ==()
133 bool QGeoRouteSegment::operator !=(const QGeoRouteSegment &other) const in operator !=()
135 return !(operator==(other)); in operator !=()
[all …]
H A Dqgeomaneuver.cpp129 QGeoManeuver::QGeoManeuver(const QGeoManeuver &other) in QGeoManeuver() argument
130 : d_ptr(other.d_ptr) {} in QGeoManeuver()
141 QGeoManeuver &QGeoManeuver::operator= (const QGeoManeuver & other) in operator =() argument
143 if (this == &other) in operator =()
146 d_ptr = other.d_ptr; in operator =()
153 bool QGeoManeuver::operator== (const QGeoManeuver &other) const in operator ==()
155 return ( (d_ptr.constData() == other.d_ptr.constData()) in operator ==()
156 || (*(d_ptr.constData()) == *(other.d_ptr.constData())) ); in operator ==()
162 bool QGeoManeuver::operator!= (const QGeoManeuver &other) const in operator !=()
164 return !(operator==(other)); in operator !=()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/positioning/
H A Dqdoublematrix4x4_p.h95 inline QDoubleMatrix4x4& operator+=(const QDoubleMatrix4x4& other);
96 inline QDoubleMatrix4x4& operator-=(const QDoubleMatrix4x4& other);
97 inline QDoubleMatrix4x4& operator*=(const QDoubleMatrix4x4& other);
100 inline bool operator==(const QDoubleMatrix4x4& other) const;
101 inline bool operator!=(const QDoubleMatrix4x4& other) const;
283 inline QDoubleMatrix4x4& QDoubleMatrix4x4::operator+=(const QDoubleMatrix4x4& other)
285 m[0][0] += other.m[0][0];
286 m[0][1] += other.m[0][1];
287 m[0][2] += other.m[0][2];
288 m[0][3] += other.m[0][3];
[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/ext/pb_ds/detail/binary_heap_/
H A Dsplit_join_fn_imps.hpp47 split(Pred pred, PB_DS_CLASS_C_DEC& other) in split() argument
62 const size_type other_actual_size = other.get_new_size_for_arbitrary(ersd); in split()
83 for (size_type i = 0; i < other.m_size; ++i) in split()
84 erase_at(other.m_a_entries, i, s_no_throw_copies_ind); in split()
91 s_entry_allocator.deallocate(other.m_a_entries, other.m_actual_size); in split()
94 other.m_actual_size = other_actual_size; in split()
97 other.m_size = ersd; in split()
100 other.m_a_entries = a_other_entries; in split()
103 other.make_heap(); in split()
106 other.notify_arbitrary(other.m_actual_size); in split()
[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/ext/pb_ds/detail/binary_heap_/
H A Dsplit_join_fn_imps.hpp47 split(Pred pred, PB_DS_CLASS_C_DEC& other) in split() argument
62 const size_type other_actual_size = other.get_new_size_for_arbitrary(ersd); in split()
83 for (size_type i = 0; i < other.m_size; ++i) in split()
84 erase_at(other.m_a_entries, i, s_no_throw_copies_ind); in split()
91 s_entry_allocator.deallocate(other.m_a_entries, other.m_actual_size); in split()
94 other.m_actual_size = other_actual_size; in split()
97 other.m_size = ersd; in split()
100 other.m_a_entries = a_other_entries; in split()
103 other.make_heap(); in split()
106 other.notify_arbitrary(other.m_actual_size); in split()
[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/ext/pb_ds/detail/pairing_heap_/
H A Dsplit_join_fn_imps.hpp47 split(Pred pred, PB_DS_CLASS_C_DEC& other) in split() argument
50 PB_DS_ASSERT_VALID(other) in split()
52 other.clear(); in split()
57 PB_DS_ASSERT_VALID(other) in split()
67 ++other.m_size; in split()
71 other.push_imp(p_out); in split()
75 PB_DS_ASSERT_VALID(other) in split()
88 PB_DS_ASSERT_VALID(other) in split()
94 join(PB_DS_CLASS_C_DEC& other) in join() argument
97 PB_DS_ASSERT_VALID(other) in join()
[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/ext/pb_ds/detail/pairing_heap_/
H A Dsplit_join_fn_imps.hpp47 split(Pred pred, PB_DS_CLASS_C_DEC& other) in split() argument
50 PB_DS_ASSERT_VALID(other) in split()
52 other.clear(); in split()
57 PB_DS_ASSERT_VALID(other) in split()
67 ++other.m_size; in split()
71 other.push_imp(p_out); in split()
75 PB_DS_ASSERT_VALID(other) in split()
88 PB_DS_ASSERT_VALID(other) in split()
94 join(PB_DS_CLASS_C_DEC& other) in join() argument
97 PB_DS_ASSERT_VALID(other) in join()
[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/ext/pb_ds/detail/binomial_heap_base_/
H A Dsplit_join_fn_imps.hpp47 split(Pred pred, PB_DS_CLASS_C_DEC& other) in split() argument
50 PB_DS_ASSERT_VALID_COND(other,true) in split()
52 other.clear(); in split()
56 PB_DS_ASSERT_VALID_COND(other,true) in split()
66 ++other.m_size; in split()
72 p_out->m_p_next_sibling = other.m_p_root; in split()
73 if (other.m_p_root != 0) in split()
74 other.m_p_root->m_p_prev_or_parent = p_out; in split()
76 other.m_p_root = p_out; in split()
77 other.m_p_root = other.fix(other.m_p_root); in split()
[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/ext/pb_ds/detail/binomial_heap_base_/
H A Dsplit_join_fn_imps.hpp47 split(Pred pred, PB_DS_CLASS_C_DEC& other) in split() argument
50 PB_DS_ASSERT_VALID_COND(other,true) in split()
52 other.clear(); in split()
56 PB_DS_ASSERT_VALID_COND(other,true) in split()
66 ++other.m_size; in split()
72 p_out->m_p_next_sibling = other.m_p_root; in split()
73 if (other.m_p_root != 0) in split()
74 other.m_p_root->m_p_prev_or_parent = p_out; in split()
76 other.m_p_root = p_out; in split()
77 other.m_p_root = other.fix(other.m_p_root); in split()
[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/ext/pb_ds/detail/splay_tree_/
H A Dsplit_join_fn_imps.hpp46 join(PB_DS_CLASS_C_DEC& other) in join() argument
49 PB_DS_ASSERT_VALID(other) in join()
50 if (base_type::join_prep(other) == false) in join()
53 PB_DS_ASSERT_VALID(other) in join()
57 node_pointer p_target_r = other.leftmost(other.m_p_head); in join()
59 other.splay(p_target_r); in join()
61 _GLIBCXX_DEBUG_ASSERT(p_target_r == other.m_p_head->m_p_parent); in join()
73 base_type::join_finish(other); in join()
76 PB_DS_ASSERT_VALID(other) in join()
82 split(key_const_reference r_key, PB_DS_CLASS_C_DEC& other) in split() argument
[all …]

12345678910>>...192