Home
last modified time | relevance | path

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

/src/contrib/llvm-project/libcxx/include/__utility/
H A Dno_destroy.h33 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR explicit __no_destroy(__uninitialized_tag) : __obj_() {} in __no_destroy()
37 ::new ((void*)__obj_) _Tp(std::forward<_Args>(__args)...); in __no_destroy()
42 return *(::new ((void*)__obj_) _Tp(std::forward<_Args>(__args)...)); in __emplace()
45 _LIBCPP_HIDE_FROM_ABI _Tp& __get() { return *reinterpret_cast<_Tp*>(__obj_); } in __get()
46 _LIBCPP_HIDE_FROM_ABI _Tp const& __get() const { return *reinterpret_cast<const _Tp*>(__obj_); } in __get()
49 _ALIGNAS_TYPE(_Tp) char __obj_[sizeof(_Tp)];
/src/contrib/llvm-project/libcxx/include/__format/
H A Dbuffer.h71 __obj_(__obj) {}
182 __flush_(__ptr_, __size_, __obj_); in __flush()
191 void* __obj_; variable