Home
last modified time | relevance | path

Searched defs:intrusive_ptr (Results 1 – 4 of 4) sorted by relevance

/aosp_15_r20/external/pytorch/c10/util/
H A Dintrusive_ptr.h87 friend class intrusive_ptr; variable
257 friend class intrusive_ptr; variable
311 explicit intrusive_ptr(TTarget* target) in intrusive_ptr() function
332 intrusive_ptr() noexcept in intrusive_ptr() function
335 intrusive_ptr(std::nullptr_t) noexcept in intrusive_ptr() function
341 explicit intrusive_ptr(TTarget* target, raw::DontIncreaseRefcount) noexcept in intrusive_ptr() function
344 explicit intrusive_ptr(std::unique_ptr<TTarget> rhs) noexcept in intrusive_ptr() function
347 intrusive_ptr(intrusive_ptr&& rhs) noexcept : target_(rhs.target_) { in intrusive_ptr() function
353 /* implicit */ intrusive_ptr(intrusive_ptr<From, FromNullType>&& rhs) noexcept in intrusive_ptr() function
362 intrusive_ptr(const intrusive_ptr& rhs) : target_(rhs.target_) { in intrusive_ptr() function
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/smart_ptr/include/boost/smart_ptr/
Dintrusive_ptr.hpp53 template<class T> class intrusive_ptr class
63 BOOST_CONSTEXPR intrusive_ptr() BOOST_SP_NOEXCEPT : px( 0 ) in intrusive_ptr() function in boost::intrusive_ptr
67 intrusive_ptr( T * p, bool add_ref = true ): px( p ) in intrusive_ptr() function in boost::intrusive_ptr
77intrusive_ptr( intrusive_ptr<U> const & rhs, typename boost::detail::sp_enable_if_convertible<U,T>… in intrusive_ptr() function in boost::intrusive_ptr
91 intrusive_ptr(intrusive_ptr const & rhs): px( rhs.px ) in intrusive_ptr() function in boost::intrusive_ptr
115 intrusive_ptr(intrusive_ptr && rhs) BOOST_SP_NOEXCEPT : px( rhs.px ) in intrusive_ptr() function in boost::intrusive_ptr
131intrusive_ptr(intrusive_ptr<U> && rhs, typename boost::detail::sp_enable_if_convertible<U,T>::type… in intrusive_ptr() function in boost::intrusive_ptr
/aosp_15_r20/external/mesa3d/src/gallium/frontends/clover/util/
H A Dpointer.hpp116 class intrusive_ptr { class
118 intrusive_ptr(T *q = NULL) : p(q) { in intrusive_ptr() function in clover::intrusive_ptr
123 intrusive_ptr(const intrusive_ptr &ptr) : in intrusive_ptr() function in clover::intrusive_ptr
127 intrusive_ptr(intrusive_ptr &&ptr) : in intrusive_ptr() function in clover::intrusive_ptr
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/smart_ptr/doc/smart_ptr/
Dintrusive_ptr.adoc10 [#intrusive_ptr] anchor