Searched refs:__storage (Results 1 - 4 of 4) sorted by relevance

/freebsd-current/contrib/llvm-project/libcxx/include/__memory/
H A Dallocator_arg_t.h53 __user_alloc_construct_impl(integral_constant<int, 0>, _Tp* __storage, const _Allocator&, _Args&&... __args) { argument
54 new (__storage) _Tp(std::forward<_Args>(__args)...);
60 __user_alloc_construct_impl(integral_constant<int, 1>, _Tp* __storage, const _Allocator& __a, _Args&&... __args) { argument
61 new (__storage) _Tp(allocator_arg, __a, std::forward<_Args>(__args)...);
67 __user_alloc_construct_impl(integral_constant<int, 2>, _Tp* __storage, const _Allocator& __a, _Args&&... __args) { argument
68 new (__storage) _Tp(std::forward<_Args>(__args)..., __a);
H A Dshared_ptr.h854 alignas(_Alignment) char __storage[_Alignment]; member in struct:__sp_aligned_storage
927 _AlignedStorage* __storage = reinterpret_cast<_AlignedStorage*>(this); variable
929 __tmp, _PointerTraits::pointer_to(*__storage), __size / sizeof(_AlignedStorage));
/freebsd-current/contrib/llvm-project/libcxx/include/__format/
H A Dformat_args.h39 __values_ = __store.__storage.__values_;
40 __types_ = __store.__storage.__types_;
42 __args_ = __store.__storage.__args_;
H A Dformat_arg_store.h249 __format::__create_packed_storage(__storage.__types_, __storage.__values_, __args...);
251 __format::__store_basic_format_arg<_Context>(__storage.__args_, __args...);
260 _Storage __storage;

Completed in 84 milliseconds