Home | History | Annotate | Download | only in util.smartptr.shared.atomic

Lines Matching refs:shared_ptr

12 // shared_ptr
16 // atomic_compare_exchange_weak_explicit(shared_ptr<T>* p, shared_ptr<T>* v,
17 // shared_ptr<T> w, memory_order success,
27 std::shared_ptr<int> p(new int(4));
28 std::shared_ptr<int> v(new int(3));
29 std::shared_ptr<int> w(new int(2));
39 std::shared_ptr<int> p(new int(4));
40 std::shared_ptr<int> v = p;
41 std::shared_ptr<int> w(new int(2));