Lines Matching refs:allocate_shared
469 shared_ptr<T> allocate_shared(const A& a, Args&&... args);
3964 allocate_shared(const _Alloc& __a, _Args&& ...__args);
3981 allocate_shared(const _Alloc& __a);
3985 allocate_shared(const _Alloc& __a, _A0& __a0);
3989 allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1);
3993 allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1, _A2& __a2);
4292 shared_ptr<_Tp>::allocate_shared(const _Alloc& __a, _Args&& ...__args)
4384 shared_ptr<_Tp>::allocate_shared(const _Alloc& __a)
4403 shared_ptr<_Tp>::allocate_shared(const _Alloc& __a, _A0& __a0)
4422 shared_ptr<_Tp>::allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1)
4441 shared_ptr<_Tp>::allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1, _A2& __a2)
4655 allocate_shared(const _Alloc& __a, _Args&& ...__args)
4657 return shared_ptr<_Tp>::allocate_shared(__a, _VSTD::forward<_Args>(__args)...);
4697 allocate_shared(const _Alloc& __a)
4699 return shared_ptr<_Tp>::allocate_shared(__a);
4705 allocate_shared(const _Alloc& __a, _A0& __a0)
4707 return shared_ptr<_Tp>::allocate_shared(__a, __a0);
4713 allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1)
4715 return shared_ptr<_Tp>::allocate_shared(__a, __a0, __a1);
4721 allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1, _A2& __a2)
4723 return shared_ptr<_Tp>::allocate_shared(__a, __a0, __a1, __a2);