Home
last modified time | relevance | path

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

/src/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&&..… in __user_alloc_construct_impl() argument
54 new (__storage) _Tp(std::forward<_Args>(__args)...); in __user_alloc_construct_impl()
60 __user_alloc_construct_impl(integral_constant<int, 1>, _Tp* __storage, const _Allocator& __a, _Args… in __user_alloc_construct_impl() argument
61 new (__storage) _Tp(allocator_arg, __a, std::forward<_Args>(__args)...); in __user_alloc_construct_impl()
67 __user_alloc_construct_impl(integral_constant<int, 2>, _Tp* __storage, const _Allocator& __a, _Args… in __user_alloc_construct_impl() argument
68 new (__storage) _Tp(std::forward<_Args>(__args)..., __a); in __user_alloc_construct_impl()
H A Dshared_ptr.h874 alignas(_Alignment) char __storage[_Alignment];
947 _AlignedStorage* __storage = reinterpret_cast<_AlignedStorage*>(this);
949 __tmp, _PointerTraits::pointer_to(*__storage), __size / sizeof(_AlignedStorage));
/src/contrib/llvm-project/libcxx/include/__format/
H A Dformat_args.h36 __values_ = __store.__storage.__values_; in basic_format_args()
37 __types_ = __store.__storage.__types_; in basic_format_args()
39 __args_ = __store.__storage.__args_; in basic_format_args()
H A Dformat_arg_store.h248 __format::__create_packed_storage(__storage.__types_, __storage.__values_, __args...); in __format_arg_store()
250 __format::__store_basic_format_arg<_Context>(__storage.__args_, __args...); in __format_arg_store()
259 _Storage __storage; member