Home
last modified time | relevance | path

Searched refs:__smart (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/__memory/
H A Dinout_ptr.h41 _LIBCPP_HIDE_FROM_ABI explicit inout_ptr_t(_Smart& __smart, _Args... __args) in inout_ptr_t() argument
42 : __s_(__smart), __a_(std::forward<_Args>(__args)...), __p_([&__smart] { in inout_ptr_t()
44 return __smart; in inout_ptr_t()
46 return __smart.get(); in inout_ptr_t()
H A Dout_ptr.h41 _LIBCPP_HIDE_FROM_ABI explicit out_ptr_t(_Smart& __smart, _Args... __args) in out_ptr_t() argument
42 : __s_(__smart), __a_(std::forward<_Args>(__args)...), __p_() { in out_ptr_t()
43 using _Ptr = decltype(__smart); in out_ptr_t()