Home
last modified time | relevance | path

Searched refs:addressof (Results 1 – 25 of 125) sorted by relevance

12345

/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.hpp201 ::memmove(boost::addressof(*dst), boost::addressof(*first), sizeof(value_type) * d); in copy_dispatch()
237 ::memcpy(boost::addressof(*dst), boost::addressof(*first), sizeof(value_type) * d); in uninitialized_copy_dispatch()
275 ::memcpy(boost::addressof(*dst), boost::addressof(*first), sizeof(value_type) * d); in uninitialized_move_dispatch()
292 new (boost::addressof(*o)) value_type(boost::move(*first)); in uninitialized_move_dispatch()
332 ::memmove(boost::addressof(*dst), boost::addressof(*first), sizeof(value_type) * d); in move_dispatch()
371 ::memmove(boost::addressof(*foo), boost::addressof(*first), sizeof(value_type) * d); in move_backward_dispatch()
476 new (boost::addressof(*first)) value_type(); in uninitialized_fill_dispatch()
491 new (boost::addressof(*it)) value_type(); // may throw in uninitialized_fill_dispatch()
521 … new (static_cast<void*>(::boost::addressof(*pos))) value_type(); // may throw in construct_dispatch()
544 ::memcpy(boost::addressof(*pos), boost::addressof(v), sizeof(V)); in construct_copy_dispatch()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/core/
H A Daddressof.hpp38 addressof(T& o) BOOST_NOEXCEPT in addressof() function
126 addressof(T& o) BOOST_NOEXCEPT in addressof() function
148 addressof(T (&o)[N]) BOOST_NOEXCEPT in addressof() function
157 T (*addressof(T (&o)[N]) BOOST_NOEXCEPT)[N]
164 const T (*addressof(const T (&o)[N]) BOOST_NOEXCEPT)[N]
238 addressof(T& o) BOOST_NOEXCEPT in addressof() function
246 addressof(T& o) BOOST_NOEXCEPT in addressof() function
255 addressof(T& o) BOOST_NOEXCEPT in addressof() function
257 return detail::addressof(o); in addressof()
269 const T* addressof(const T&&) = delete;
H A Dref.hpp73 BOOST_FORCEINLINE explicit reference_wrapper(T& t): t_(boost::addressof(t)) {} in reference_wrapper()
77 …BOOST_FORCEINLINE explicit reference_wrapper( T & t, ref_workaround_tag ): t_( boost::addressof( t… in reference_wrapper()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/optional/detail/
H A Doptional_reference_spec.hpp136 : ptr_(boost::addressof(rhs)) {} in optional()
140 : ptr_(boost::addressof(rhs)) {} in optional()
169 : ptr_(boost::addressof(r)) { detail::prevent_binding_rvalue<R>(); } in optional()
173 : ptr_(cond ? boost::addressof(r) : 0) { detail::prevent_binding_rvalue<R>(); } in optional()
177 … r) BOOST_NOEXCEPT { detail::prevent_binding_rvalue<R>(); ptr_ = boost::addressof(r); return *this… in operator =()
181 { detail::prevent_binding_rvalue<R>(); ptr_ = boost::addressof(r); } in emplace()
193 { detail::prevent_binding_rvalue<R>(); ptr_ = boost::addressof(r); } in reset()
204 : ptr_(boost::addressof(v)) { } in optional()
208 : ptr_(boost::addressof(v)) { } in optional()
211 …if<detail::is_no_optional<U> >::type* = 0) BOOST_NOEXCEPT : ptr_(cond ? boost::addressof(v) : 0) {} in optional()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/index/detail/rtree/
H A Dquery_iterators.hpp94 return boost::addressof(m_visitor.dereference()); in operator ->()
162 return boost::addressof(m_visitor.dereference()); in operator ->()
248 …nst query_iterator_wrapper * p = dynamic_cast<const query_iterator_wrapper *>(boost::addressof(r)); in equals()
290 if ( this != boost::addressof(o) ) in operator =()
304 if ( this != boost::addressof(o) ) in operator =()
318 if ( this != boost::addressof(o) ) in operator =()
331 if ( this != boost::addressof(o) ) in operator =()
347 return boost::addressof(m_ptr->dereference()); in operator ->()
/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/pstl/
H A Dglue_memory_impl.h49 … ::new (std::addressof(__val2)) _ValueType2(__val1); in uninitialized_copy()
83 … ::new (std::addressof(__val2)) _ValueType2(__val1); in uninitialized_copy_n()
119 … ::new (std::addressof(__val2)) _ValueType2(std::move(__val1)); in uninitialized_move()
153 … ::new (std::addressof(__val2)) _ValueType2(std::move(__val1)); in uninitialized_move_n()
185 … ::new (std::addressof(__val)) _ValueType(__value); in uninitialized_fill()
215 …[&__value](_ReferenceType __val) { ::new (std::addressof(__val)) _ValueType(__value); }, __is_vect… in uninitialized_fill_n()
274 … [](_ReferenceType __val) { ::new (std::addressof(__val)) _ValueType; }, __is_vector, in uninitialized_default_construct()
294 … [](_ReferenceType __val) { ::new (std::addressof(__val)) _ValueType; }, in uninitialized_default_construct_n()
323 … [](_ReferenceType __val) { ::new (std::addressof(__val)) _ValueType(); }, in uninitialized_value_construct()
352 …[](_ReferenceType __val) { ::new (std::addressof(__val)) _ValueType(); }, __is_vector, __is_parall… in uninitialized_value_construct_n()
H A Dmemory_impl.h34 ::new (std::addressof(*__result)) _ValueType2(std::move(*__first)); in __brick_uninitialized_move()
50 …[](_ReferenceType1 __x, _ReferenceType2 __y) { ::new (std::addressof(__y)) __ValueType2(std::move(… in __brick_uninitialized_move()
/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/pstl/
H A Dglue_memory_impl.h49 … ::new (std::addressof(__val2)) _ValueType2(__val1); in uninitialized_copy()
83 … ::new (std::addressof(__val2)) _ValueType2(__val1); in uninitialized_copy_n()
119 … ::new (std::addressof(__val2)) _ValueType2(std::move(__val1)); in uninitialized_move()
153 … ::new (std::addressof(__val2)) _ValueType2(std::move(__val1)); in uninitialized_move_n()
185 … ::new (std::addressof(__val)) _ValueType(__value); in uninitialized_fill()
215 …[&__value](_ReferenceType __val) { ::new (std::addressof(__val)) _ValueType(__value); }, __is_vect… in uninitialized_fill_n()
274 … [](_ReferenceType __val) { ::new (std::addressof(__val)) _ValueType; }, __is_vector, in uninitialized_default_construct()
294 … [](_ReferenceType __val) { ::new (std::addressof(__val)) _ValueType; }, in uninitialized_default_construct_n()
323 … [](_ReferenceType __val) { ::new (std::addressof(__val)) _ValueType(); }, in uninitialized_value_construct()
352 …[](_ReferenceType __val) { ::new (std::addressof(__val)) _ValueType(); }, __is_vector, __is_parall… in uninitialized_value_construct_n()
H A Dmemory_impl.h34 ::new (std::addressof(*__result)) _ValueType2(std::move(*__first)); in __brick_uninitialized_move()
50 …[](_ReferenceType1 __x, _ReferenceType2 __y) { ::new (std::addressof(__y)) __ValueType2(std::move(… in __brick_uninitialized_move()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/relate/
H A Dfollow_helpers.hpp141 : sid_ptr(boost::addressof(sid)) in point_info()
142 , pt_ptr(boost::addressof(pt)) in point_info()
172 : sid_ptr(boost::addressof(sid)) in same_single()
194 : sid_ptr(boost::addressof(sid)) in same_ring()
220 m_seg_id_ptr = boost::addressof(seg_id); in update()
277 m_exit_turn_ptr = boost::addressof(turn); in exit()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/proto/detail/
H A Ddecltype.hpp216 return boost::addressof(t); in proto_get_pointer()
222 return boost::addressof(t); in proto_get_pointer()
240 … , (true ? 0 : boost::addressof(boost::proto::detail::lvalue(Obj))) \
253 return boost::addressof(t); in get_pointer()
260 return boost::addressof(t); in get_pointer()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/variant/
H A Dget.hpp89 return boost::addressof(operand); in operator ()()
152 U_ptr result = relaxed_get<U>(boost::addressof(operand)); in relaxed_get()
168 U_ptr result = relaxed_get<const U>(boost::addressof(operand)); in relaxed_get()
185 U_ptr result = relaxed_get<U>(boost::addressof(operand)); in relaxed_get()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/centroid/
H A Dtranslating_transformer.hpp86 m_origin = boost::addressof(*pt_it); in translating_transformer()
91 : m_origin(boost::addressof(origin)) in translating_transformer()
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/libcxx/include/
H A D__mutex_base131 : __m_(_VSTD::addressof(__m)), __owns_(true) {__m_->lock();}
134 : __m_(_VSTD::addressof(__m)), __owns_(false) {}
137 : __m_(_VSTD::addressof(__m)), __owns_(__m.try_lock()) {}
140 : __m_(_VSTD::addressof(__m)), __owns_(true) {}
144 : __m_(_VSTD::addressof(__m)), __owns_(__m.try_lock_until(__t)) {}
148 : __m_(_VSTD::addressof(__m)), __owns_(__m.try_lock_for(__d)) {}
H A Dshared_mutex328 : __m_(_VSTD::addressof(__m)),
334 : __m_(_VSTD::addressof(__m)),
340 : __m_(_VSTD::addressof(__m)),
346 : __m_(_VSTD::addressof(__m)),
354 : __m_(_VSTD::addressof(__m)),
362 : __m_(_VSTD::addressof(__m)),
H A Dforward_list617 __node_traits::destroy(__a, _VSTD::addressof(__p->__value_));
901 __node_traits::construct(__a, _VSTD::addressof(__h->__value_));
923 __node_traits::construct(__a, _VSTD::addressof(__h->__value_));
1126 __node_traits::construct(__a, _VSTD::addressof(__h->__value_),
1142 __node_traits::construct(__a, _VSTD::addressof(__h->__value_), _VSTD::move(__v));
1156 __node_traits::construct(__a, _VSTD::addressof(__h->__value_), __v);
1168 __node_traits::destroy(__a, _VSTD::addressof(__p->__value_));
1183 __node_traits::construct(__a, _VSTD::addressof(__h->__value_),
1198 __node_traits::construct(__a, _VSTD::addressof(__h->__value_), _VSTD::move(__v));
1214 __node_traits::construct(__a, _VSTD::addressof(__h->__value_), __v);
[all …]
H A Ddeque1180 __alloc_traits::destroy(__a, _VSTD::addressof(*__i));
1830 __alloc_traits::construct(__a, _VSTD::addressof(*__base::end()), __v);
1842 __alloc_traits::construct(__a, _VSTD::addressof(*--__base::begin()), __v);
1856 __alloc_traits::construct(__a, _VSTD::addressof(*__base::end()), _VSTD::move(__v));
1873 __alloc_traits::construct(__a, _VSTD::addressof(*__base::end()),
1889 __alloc_traits::construct(__a, _VSTD::addressof(*--__base::begin()), _VSTD::move(__v));
1908 …__alloc_traits::construct(__a, _VSTD::addressof(*--__base::begin()), _VSTD::forward<_Args>(__args)…
1930 __alloc_traits::construct(__a, _VSTD::addressof(*--__base::begin()), _VSTD::move(__v));
1938 __alloc_traits::construct(__a, _VSTD::addressof(*__bm1), _VSTD::move(*__b));
1954 __alloc_traits::construct(__a, _VSTD::addressof(*__base::end()), _VSTD::move(__v));
[all …]
H A Dlist762 __node_alloc_traits::destroy(__na, _VSTD::addressof(__np->__value_));
1452 __node_alloc_traits::construct(__na, _VSTD::addressof(__hold->__value_), __x);
1479 __node_alloc_traits::construct(__na, _VSTD::addressof(__hold->__value_), __x);
1495 __node_alloc_traits::construct(__na, _VSTD::addressof(__hold->__value_), __x);
1506 __node_alloc_traits::destroy(__na, _VSTD::addressof(*__e));
1545 __node_alloc_traits::construct(__na, _VSTD::addressof(__hold->__value_), *__f);
1561 __node_alloc_traits::construct(__na, _VSTD::addressof(__hold->__value_), *__f);
1572 __node_alloc_traits::destroy(__na, _VSTD::addressof(*__e));
1598 __node_alloc_traits::construct(__na, _VSTD::addressof(__hold->__value_), __x);
1611 __node_alloc_traits::construct(__na, _VSTD::addressof(__hold->__value_), __x);
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/libcxx/include/
H A D__mutex_base131 : __m_(_VSTD::addressof(__m)), __owns_(true) {__m_->lock();}
134 : __m_(_VSTD::addressof(__m)), __owns_(false) {}
137 : __m_(_VSTD::addressof(__m)), __owns_(__m.try_lock()) {}
140 : __m_(_VSTD::addressof(__m)), __owns_(true) {}
144 : __m_(_VSTD::addressof(__m)), __owns_(__m.try_lock_until(__t)) {}
148 : __m_(_VSTD::addressof(__m)), __owns_(__m.try_lock_for(__d)) {}
H A Dshared_mutex328 : __m_(_VSTD::addressof(__m)),
334 : __m_(_VSTD::addressof(__m)),
340 : __m_(_VSTD::addressof(__m)),
346 : __m_(_VSTD::addressof(__m)),
354 : __m_(_VSTD::addressof(__m)),
362 : __m_(_VSTD::addressof(__m)),
H A Dforward_list617 __node_traits::destroy(__a, _VSTD::addressof(__p->__value_));
901 __node_traits::construct(__a, _VSTD::addressof(__h->__value_));
923 __node_traits::construct(__a, _VSTD::addressof(__h->__value_));
1126 __node_traits::construct(__a, _VSTD::addressof(__h->__value_),
1142 __node_traits::construct(__a, _VSTD::addressof(__h->__value_), _VSTD::move(__v));
1156 __node_traits::construct(__a, _VSTD::addressof(__h->__value_), __v);
1168 __node_traits::destroy(__a, _VSTD::addressof(__p->__value_));
1183 __node_traits::construct(__a, _VSTD::addressof(__h->__value_),
1198 __node_traits::construct(__a, _VSTD::addressof(__h->__value_), _VSTD::move(__v));
1214 __node_traits::construct(__a, _VSTD::addressof(__h->__value_), __v);
[all …]
H A Ddeque1180 __alloc_traits::destroy(__a, _VSTD::addressof(*__i));
1830 __alloc_traits::construct(__a, _VSTD::addressof(*__base::end()), __v);
1842 __alloc_traits::construct(__a, _VSTD::addressof(*--__base::begin()), __v);
1856 __alloc_traits::construct(__a, _VSTD::addressof(*__base::end()), _VSTD::move(__v));
1873 __alloc_traits::construct(__a, _VSTD::addressof(*__base::end()),
1889 __alloc_traits::construct(__a, _VSTD::addressof(*--__base::begin()), _VSTD::move(__v));
1908 …__alloc_traits::construct(__a, _VSTD::addressof(*--__base::begin()), _VSTD::forward<_Args>(__args)…
1930 __alloc_traits::construct(__a, _VSTD::addressof(*--__base::begin()), _VSTD::move(__v));
1938 __alloc_traits::construct(__a, _VSTD::addressof(*__bm1), _VSTD::move(*__b));
1954 __alloc_traits::construct(__a, _VSTD::addressof(*__base::end()), _VSTD::move(__v));
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/geometries/
H A Dpointing_segment.hpp64 : first(boost::addressof(p1)) in pointing_segment()
65 , second(boost::addressof(p2)) in pointing_segment()
/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/experimental/bits/
H A Dnet.h107 { return std::addressof(_M_value); } in _GLIBCXX_VISIBILITY()
112 { return std::addressof(_M_value); } in _GLIBCXX_VISIBILITY()
/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/experimental/bits/
H A Dnet.h107 { return std::addressof(_M_value); } in _GLIBCXX_VISIBILITY()
112 { return std::addressof(_M_value); } in _GLIBCXX_VISIBILITY()

12345