HomeSort by relevance Sort by last modified time
    Searched refs:atomic_compare_exchange_weak_explicit (Results 1 - 7 of 7) sorted by null

  /external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared.atomic/
atomic_compare_exchange_weak_explicit.pass.cpp 21 // atomic_compare_exchange_weak_explicit(shared_ptr<T>* p, shared_ptr<T>* v,
35 bool b = std::atomic_compare_exchange_weak_explicit(&p, &v, w,
47 bool b = std::atomic_compare_exchange_weak_explicit(&p, &v, w,
Android.mk 27 test_name := utilities/memory/util.smartptr/util.smartptr.shared.atomic/atomic_compare_exchange_weak_explicit
28 test_src := atomic_compare_exchange_weak_explicit.pass.cpp
  /external/libcxx/test/atomics/atomics.types.operations/atomics.types.operations.req/
atomic_compare_exchange_weak_explicit.pass.cpp 14 // atomic_compare_exchange_weak_explicit(volatile atomic<T>* obj, T* expc,
20 // atomic_compare_exchange_weak_explicit(atomic<T>* obj, T* expc, T desr,
36 assert(std::atomic_compare_exchange_weak_explicit(&a, &t, T(2),
40 assert(std::atomic_compare_exchange_weak_explicit(&a, &t, T(3),
50 assert(std::atomic_compare_exchange_weak_explicit(&a, &t, T(2),
54 assert(std::atomic_compare_exchange_weak_explicit(&a, &t, T(3),
Android.mk 31 test_name := atomics/atomics.types.operations/atomics.types.operations.req/atomic_compare_exchange_weak_explicit
32 test_src := atomic_compare_exchange_weak_explicit.pass.cpp
  /bionic/libc/include/
stdatomic.h 75 using std::atomic_compare_exchange_weak_explicit;
401 #define atomic_compare_exchange_weak_explicit(object, expected, \
426 #define atomic_compare_exchange_weak_explicit(object, expected, \
457 #define atomic_compare_exchange_weak_explicit(object, expected, \
510 atomic_compare_exchange_weak_explicit(object, expected, \
  /development/ndk/platforms/android-L/include/
stdatomic.h 247 #define atomic_compare_exchange_weak_explicit(object, expected, \ macro
272 #define atomic_compare_exchange_weak_explicit(object, expected, \ macro
303 #define atomic_compare_exchange_weak_explicit(object, expected, \ macro
356 atomic_compare_exchange_weak_explicit(object, expected, \
  /bionic/tests/
stdatomic_test.cpp 132 ASSERT_TRUE(atomic_compare_exchange_weak_explicit(&i, &expected, 456, memory_order_relaxed, memory_order_relaxed));
133 ASSERT_FALSE(atomic_compare_exchange_weak_explicit(&i, &expected, 456, memory_order_relaxed, memory_order_relaxed));

Completed in 145 milliseconds