Lines Matching refs:__a1
1580 const _A1& __a1)
1582 ::new ((void*)__p) _Tp(__a0, __a1);
1587 const _A1& __a1, const _A2& __a2)
1589 ::new ((void*)__p) _Tp(__a0, __a1, __a2);
1855 construct(pointer __p, _A0& __a0, _A1& __a1)
1857 ::new((void*)__p) _Tp(__a0, __a1);
1862 construct(pointer __p, const _A0& __a0, _A1& __a1)
1864 ::new((void*)__p) _Tp(__a0, __a1);
1869 construct(pointer __p, _A0& __a0, const _A1& __a1)
1871 ::new((void*)__p) _Tp(__a0, __a1);
1876 construct(pointer __p, const _A0& __a0, const _A1& __a1)
1878 ::new((void*)__p) _Tp(__a0, __a1);
1956 construct(pointer __p, _A0& __a0, _A1& __a1)
1958 ::new((void*) const_cast<_Tp *>(__p)) _Tp(__a0, __a1);
1963 construct(pointer __p, const _A0& __a0, _A1& __a1)
1965 ::new((void*) const_cast<_Tp *>(__p)) _Tp(__a0, __a1);
1970 construct(pointer __p, _A0& __a0, const _A1& __a1)
1972 ::new((void*) const_cast<_Tp *>(__p)) _Tp(__a0, __a1);
1977 construct(pointer __p, const _A0& __a0, const _A1& __a1)
1979 ::new((void*) const_cast<_Tp *>(__p)) _Tp(__a0, __a1);
3688 __shared_ptr_emplace(_Alloc __a, _A0& __a0, _A1& __a1)
3689 : __data_(__a, _Tp(__a0, __a1)) {}
3693 __shared_ptr_emplace(_Alloc __a, _A0& __a0, _A1& __a1, _A2& __a2)
3694 : __data_(__a, _Tp(__a0, __a1, __a2)) {}
3998 allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1);
4002 allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1, _A2& __a2);
4401 shared_ptr<_Tp>::make_shared(_A0& __a0, _A1& __a1)
4409 ::new(__hold2.get()) _CntrlBlk(__alloc2, __a0, __a1);
4420 shared_ptr<_Tp>::make_shared(_A0& __a0, _A1& __a1, _A2& __a2)
4428 ::new(__hold2.get()) _CntrlBlk(__alloc2, __a0, __a1, __a2);
4479 shared_ptr<_Tp>::allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1)
4488 _CntrlBlk(__a, __a0, __a1);
4499 shared_ptr<_Tp>::allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1, _A2& __a2)
4508 _CntrlBlk(__a, __a0, __a1, __a2);
4746 make_shared(_A0& __a0, _A1& __a1)
4748 return shared_ptr<_Tp>::make_shared(__a0, __a1);
4754 make_shared(_A0& __a0, _A1& __a1, _A2& __a2)
4756 return shared_ptr<_Tp>::make_shared(__a0, __a1, __a2);
4778 allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1)
4780 return shared_ptr<_Tp>::allocate_shared(__a, __a0, __a1);
4786 allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1, _A2& __a2)
4788 return shared_ptr<_Tp>::allocate_shared(__a, __a0, __a1, __a2);
5601 void __swap_allocator(_Alloc & __a1, _Alloc & __a2)
5608 __swap_allocator(__a1, __a2,
5614 void __swap_allocator(_Alloc & __a1, _Alloc & __a2, true_type)
5622 swap(__a1, __a2);