Home
last modified time | relevance | path

Searched refs:atomic_compare_exchange_weak_explicit (Results 1 – 7 of 7) sorted by relevance

/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared.atomic/
Datomic_compare_exchange_weak_explicit.pass.cpp37 bool b = std::atomic_compare_exchange_weak_explicit(&p, &v, w, in main()
49 bool b = std::atomic_compare_exchange_weak_explicit(&p, &v, w, in main()
/external/libcxx/test/std/atomics/atomics.types.operations/atomics.types.operations.req/
Datomic_compare_exchange_weak_explicit.pass.cpp45 assert(std::atomic_compare_exchange_weak_explicit(&a, &t, T(3), in test()
59 assert(std::atomic_compare_exchange_weak_explicit(&a, &t, T(3), in test()
/external/libcxx/test/support/
Dcmpxchg_loop.h44 if (std::atomic_compare_exchange_weak_explicit(atomic, expected, desired, in c_cmpxchg_weak_loop()
/external/clang/lib/Headers/
Dstdatomic.h144 #define atomic_compare_exchange_weak_explicit __c11_atomic_compare_exchange_weak macro
/external/libcxx/include/
Datomic341 atomic_compare_exchange_weak_explicit(volatile atomic<T>* obj, T* expc,
347 atomic_compare_exchange_weak_explicit(atomic<T>* obj, T* expc, T desr,
1254 // atomic_compare_exchange_weak_explicit
1259 atomic_compare_exchange_weak_explicit(volatile atomic<_Tp>* __o, _Tp* __e,
1269 atomic_compare_exchange_weak_explicit(atomic<_Tp>* __o, _Tp* __e, _Tp __d,
Dmemory571 atomic_compare_exchange_weak_explicit(shared_ptr<T>* p, shared_ptr<T>* v,
5504 atomic_compare_exchange_weak_explicit(shared_ptr<_Tp>* __p, shared_ptr<_Tp>* __v,
/external/clang/test/Sema/
Datomic-ops.c233 atomic_compare_exchange_weak_explicit(&n, &k, k, memory_order_seq_cst, memory_order_acquire); in f()