Lines Matching refs:__a1
1558 const _A1& __a1)
1560 ::new ((void*)__p) _Tp(__a0, __a1);
1565 const _A1& __a1, const _A2& __a2)
1567 ::new ((void*)__p) _Tp(__a0, __a1, __a2);
1812 construct(pointer __p, _A0& __a0, _A1& __a1)
1814 ::new((void*)__p) _Tp(__a0, __a1);
1819 construct(pointer __p, const _A0& __a0, _A1& __a1)
1821 ::new((void*)__p) _Tp(__a0, __a1);
1826 construct(pointer __p, _A0& __a0, const _A1& __a1)
1828 ::new((void*)__p) _Tp(__a0, __a1);
1833 construct(pointer __p, const _A0& __a0, const _A1& __a1)
1835 ::new((void*)__p) _Tp(__a0, __a1);
1908 construct(pointer __p, _A0& __a0, _A1& __a1)
1910 ::new((void*)__p) _Tp(__a0, __a1);
1915 construct(pointer __p, const _A0& __a0, _A1& __a1)
1917 ::new((void*)__p) _Tp(__a0, __a1);
1922 construct(pointer __p, _A0& __a0, const _A1& __a1)
1924 ::new((void*)__p) _Tp(__a0, __a1);
1929 construct(pointer __p, const _A0& __a0, const _A1& __a1)
1931 ::new((void*)__p) _Tp(__a0, __a1);
3567 __shared_ptr_emplace(_Alloc __a, _A0& __a0, _A1& __a1)
3568 : __data_(__a, _Tp(__a0, __a1)) {}
3572 __shared_ptr_emplace(_Alloc __a, _A0& __a0, _A1& __a1, _A2& __a2)
3573 : __data_(__a, _Tp(__a0, __a1, __a2)) {}
3863 allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1);
3867 allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1, _A2& __a2);
4243 shared_ptr<_Tp>::make_shared(_A0& __a0, _A1& __a1)
4250 ::new(__hold2.get()) _CntrlBlk(__alloc2, __a0, __a1);
4261 shared_ptr<_Tp>::make_shared(_A0& __a0, _A1& __a1, _A2& __a2)
4268 ::new(__hold2.get()) _CntrlBlk(__alloc2, __a0, __a1, __a2);
4317 shared_ptr<_Tp>::allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1)
4325 _CntrlBlk(__a, __a0, __a1);
4336 shared_ptr<_Tp>::allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1, _A2& __a2)
4344 _CntrlBlk(__a, __a0, __a1, __a2);
4582 make_shared(_A0& __a0, _A1& __a1)
4584 return shared_ptr<_Tp>::make_shared(__a0, __a1);
4590 make_shared(_A0& __a0, _A1& __a1, _A2& __a2)
4592 return shared_ptr<_Tp>::make_shared(__a0, __a1, __a2);
4614 allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1)
4616 return shared_ptr<_Tp>::allocate_shared(__a, __a0, __a1);
4622 allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1, _A2& __a2)
4624 return shared_ptr<_Tp>::allocate_shared(__a, __a0, __a1, __a2);
5421 void __swap_allocator(_Alloc & __a1, _Alloc & __a2)
5428 __swap_allocator(__a1, __a2,
5434 void __swap_allocator(_Alloc & __a1, _Alloc & __a2, true_type)
5442 swap(__a1, __a2);