Lines Matching defs:__alloc
749 _ForOverwriteAllocator __alloc(__a);
750 return std::allocate_shared<_Tp>(__alloc);
775 _Alloc const& __alloc, size_t __count, _Tp const& __arg)
776 : __alloc_(__alloc), __count_(__count) {
780 _LIBCPP_HIDE_FROM_ABI explicit __unbounded_array_control_block(_Alloc const& __alloc, size_t __count)
781 : __alloc_(__alloc), __count_(__count) {
874 _LIBCPP_HIDE_FROM_ABI explicit __bounded_array_control_block(_Alloc const& __alloc, _Tp const& __arg)
875 : __alloc_(__alloc) {
879 _LIBCPP_HIDE_FROM_ABI explicit __bounded_array_control_block(_Alloc const& __alloc) : __alloc_(__alloc) {
958 _ForOverwriteAllocator __alloc(__a);
959 return std::__allocate_shared_bounded_array<_Tp>(__alloc);
991 _ForOverwriteAllocator __alloc(__a);
992 return std::__allocate_shared_unbounded_array<_Tp>(__alloc, __n);