/external/llvm-project/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared.atomic/ |
D | atomic_compare_exchange_weak.pass.cpp | 33 bool b = std::atomic_compare_exchange_weak(&p, &v, w); in main() 43 bool b = std::atomic_compare_exchange_weak(&p, &v, w); in main()
|
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared.atomic/ |
D | atomic_compare_exchange_weak.pass.cpp | 39 bool b = std::atomic_compare_exchange_weak(&p, &v, w); in main() 49 bool b = std::atomic_compare_exchange_weak(&p, &v, w); in main()
|
/external/boringssl/src/crypto/ |
D | refcount_c11.c | 43 if (atomic_compare_exchange_weak(count, &expected, new_value)) { in CRYPTO_refcount_inc() 60 if (atomic_compare_exchange_weak(count, &expected, new_value)) { in CRYPTO_refcount_dec_and_test_zero()
|
/external/rust/crates/quiche/deps/boringssl/src/crypto/ |
D | refcount_c11.c | 43 if (atomic_compare_exchange_weak(count, &expected, new_value)) { in CRYPTO_refcount_inc() 60 if (atomic_compare_exchange_weak(count, &expected, new_value)) { in CRYPTO_refcount_dec_and_test_zero()
|
/external/libcxx/test/std/atomics/atomics.types.operations/atomics.types.operations.req/ |
D | atomic_compare_exchange_weak.pass.cpp | 41 assert(std::atomic_compare_exchange_weak(&a, &t, T(3)) == false); in operator ()() 53 assert(std::atomic_compare_exchange_weak(&a, &t, T(3)) == false); in operator ()()
|
/external/llvm-project/libcxx/test/std/atomics/atomics.types.operations/atomics.types.operations.req/ |
D | atomic_compare_exchange_weak.pass.cpp | 41 assert(std::atomic_compare_exchange_weak(&a, &t, T(3)) == false); in operator ()() 53 assert(std::atomic_compare_exchange_weak(&a, &t, T(3)) == false); in operator ()()
|
/external/llvm-project/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_lfstack.h | 41 if (atomic_compare_exchange_weak(&head_, &cmp, xch, in Push() 56 if (atomic_compare_exchange_weak(&head_, &cmp, xch, in Pop()
|
D | sanitizer_persistent_allocator.h | 40 if (atomic_compare_exchange_weak(®ion_pos, &cmp, cmp + size, in tryAlloc()
|
D | sanitizer_atomic_clang.h | 87 inline bool atomic_compare_exchange_weak(volatile T *a, in atomic_compare_exchange_weak() function
|
D | sanitizer_mutex.h | 156 atomic_compare_exchange_weak(&state_, &cmp, kWriteLock, in LockSlow()
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_lfstack.h | 42 if (atomic_compare_exchange_weak(&head_, &cmp, xch, in Push() 57 if (atomic_compare_exchange_weak(&head_, &cmp, xch, in Pop()
|
D | sanitizer_persistent_allocator.h | 41 if (atomic_compare_exchange_weak(®ion_pos, &cmp, cmp + size, in tryAlloc()
|
D | sanitizer_atomic_clang.h | 89 INLINE bool atomic_compare_exchange_weak(volatile T *a, in atomic_compare_exchange_weak() function
|
D | sanitizer_mutex.h | 152 atomic_compare_exchange_weak(&state_, &cmp, kWriteLock, in LockSlow()
|
D | sanitizer_stackdepotbase.h | 80 atomic_compare_exchange_weak(p, &cmp, cmp | 1, memory_order_acquire)) in lock()
|
/external/llvm-project/mlir/test/Dialect/SPIRV/ |
D | availability.mlir | 13 // CHECK: atomic_compare_exchange_weak 14 func @atomic_compare_exchange_weak(%ptr: !spv.ptr<i32, Workgroup>, %value: i32, %comparator: i32) -…
|
D | atomic-ops.mlir | 36 func @atomic_compare_exchange_weak(%ptr: !spv.ptr<i32, Workgroup>, %value: i32, %comparator: i32) -… 44 func @atomic_compare_exchange_weak(%ptr: !spv.ptr<i32, Workgroup>, %value: i64, %comparator: i32) -… 52 func @atomic_compare_exchange_weak(%ptr: !spv.ptr<i32, Workgroup>, %value: i32, %comparator: i16) -… 60 func @atomic_compare_exchange_weak(%ptr: !spv.ptr<i64, Workgroup>, %value: i32, %comparator: i32) -…
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
D | sanitizer_atomic_test.cc | 111 EXPECT_TRUE(atomic_compare_exchange_weak((T*)&var, &old_val, new_val, in CheckAtomicCompareExchange() 113 EXPECT_FALSE(atomic_compare_exchange_weak((T*)&var, &old_val, new_val, in CheckAtomicCompareExchange()
|
/external/llvm-project/mlir/test/Dialect/SPIRV/Serialization/ |
D | atomic-ops.mlir | 4 // CHECK-LABEL: @atomic_compare_exchange_weak 5 …spv.func @atomic_compare_exchange_weak(%ptr: !spv.ptr<i32, Workgroup>, %value: i32, %comparator: i…
|
/external/llvm-project/compiler-rt/lib/sanitizer_common/tests/ |
D | sanitizer_atomic_test.cpp | 126 EXPECT_TRUE(atomic_compare_exchange_weak((T*)&var, &old_val, new_val, in CheckAtomicCompareExchange() 128 EXPECT_FALSE(atomic_compare_exchange_weak((T*)&var, &old_val, new_val, in CheckAtomicCompareExchange()
|
/external/drrickorang/LoopbackApp/app/src/main/cpp/audio_utils/ |
D | atomic.c | 40 return atomic_compare_exchange_weak(a, expect, desire); in android_atomic_compare_exchange()
|
/external/libcxx/test/support/ |
D | cmpxchg_loop.h | 40 if (std::atomic_compare_exchange_weak(atomic, expected, desired) == true) { in c_cmpxchg_weak_loop()
|
/external/llvm-project/libcxx/test/support/ |
D | cmpxchg_loop.h | 39 if (std::atomic_compare_exchange_weak(atomic, expected, desired) == true) { in c_cmpxchg_weak_loop()
|
/external/llvm-project/clang/lib/Headers/ |
D | stdatomic.h | 129 #define atomic_compare_exchange_weak(object, expected, desired) __c11_atomic_compare_exchange_weak(… macro
|
/external/clang/lib/Headers/ |
D | stdatomic.h | 143 #define atomic_compare_exchange_weak(object, expected, desired) __c11_atomic_compare_exchange_weak(… macro
|