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

  /external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared.atomic/
atomic_compare_exchange_strong_explicit.pass.cpp 21 // atomic_compare_exchange_strong_explicit(shared_ptr<T>* p, shared_ptr<T>* v,
35 bool b = std::atomic_compare_exchange_strong_explicit(&p, &v, w,
47 bool b = std::atomic_compare_exchange_strong_explicit(&p, &v, w,
Android.mk 19 test_name := utilities/memory/util.smartptr/util.smartptr.shared.atomic/atomic_compare_exchange_strong_explicit
20 test_src := atomic_compare_exchange_strong_explicit.pass.cpp
  /external/libcxx/test/atomics/atomics.types.operations/atomics.types.operations.req/
atomic_compare_exchange_strong_explicit.pass.cpp 14 // atomic_compare_exchange_strong_explicit(volatile atomic<T>* obj, T* expc,
20 // atomic_compare_exchange_strong_explicit(atomic<T>* obj, T* expc, T desr,
36 assert(std::atomic_compare_exchange_strong_explicit(&a, &t, T(2),
40 assert(std::atomic_compare_exchange_strong_explicit(&a, &t, T(3),
50 assert(std::atomic_compare_exchange_strong_explicit(&a, &t, T(2),
54 assert(std::atomic_compare_exchange_strong_explicit(&a, &t, T(3),
Android.mk 23 test_name := atomics/atomics.types.operations/atomics.types.operations.req/atomic_compare_exchange_strong_explicit
24 test_src := atomic_compare_exchange_strong_explicit.pass.cpp
  /bionic/libc/include/
stdatomic.h 73 using std::atomic_compare_exchange_strong_explicit;
397 #define atomic_compare_exchange_strong_explicit(object, expected, \
422 #define atomic_compare_exchange_strong_explicit(object, expected, \
449 #define atomic_compare_exchange_strong_explicit(object, expected, \
459 atomic_compare_exchange_strong_explicit(object, expected, \
507 atomic_compare_exchange_strong_explicit(object, expected, \
  /development/ndk/platforms/android-L/include/
stdatomic.h 243 #define atomic_compare_exchange_strong_explicit(object, expected, \ macro
268 #define atomic_compare_exchange_strong_explicit(object, expected, \ macro
295 #define atomic_compare_exchange_strong_explicit(object, expected, \ macro
305 atomic_compare_exchange_strong_explicit(object, expected, \
353 atomic_compare_exchange_strong_explicit(object, expected, \
  /bionic/tests/
stdatomic_test.cpp 120 ASSERT_TRUE(atomic_compare_exchange_strong_explicit(&i, &expected, 456, memory_order_relaxed, memory_order_relaxed));
121 ASSERT_FALSE(atomic_compare_exchange_strong_explicit(&i, &expected, 456, memory_order_relaxed, memory_order_relaxed));

Completed in 147 milliseconds