Lines Matching refs:__b
74 swap(__shared_ptr<_Tp, _Lp>& __a, __shared_ptr<_Tp, _Lp>& __b)
75 { __a.swap(__b); }
79 - swap(__shared_ptr<_Tp, _Lp>&& __a, __shared_ptr<_Tp, _Lp>& __b)
80 - { __a.swap(__b); }
84 - swap(__shared_ptr<_Tp, _Lp>& __a, __shared_ptr<_Tp, _Lp>&& __b)
85 - { __a.swap(__b); }
91 swap(shared_ptr<_Tp>& __a, shared_ptr<_Tp>& __b)
92 { __a.swap(__b); }
96 - swap(shared_ptr<_Tp>&& __a, shared_ptr<_Tp>& __b)
97 - { __a.swap(__b); }
101 - swap(shared_ptr<_Tp>& __a, shared_ptr<_Tp>&& __b)
102 - { __a.swap(__b); }
276 : first(__a), second(__b) { }