Searched refs:__ATOMIC_ACQ_REL (Results 1 – 11 of 11) sorted by relevance
/freebsd/crypto/openssl/crypto/ |
H A D | threads_pthread.c | 201 # if defined(__GNUC__) && defined(__ATOMIC_ACQ_REL) && !defined(BROKEN_CLANG_ATOMICS) in CRYPTO_atomic_add() 203 *ret = __atomic_add_fetch(val, amount, __ATOMIC_ACQ_REL); in CRYPTO_atomic_add() 228 # if defined(__GNUC__) && defined(__ATOMIC_ACQ_REL) && !defined(BROKEN_CLANG_ATOMICS) in CRYPTO_atomic_or() 230 *ret = __atomic_or_fetch(val, op, __ATOMIC_ACQ_REL); in CRYPTO_atomic_or()
|
/freebsd/contrib/llvm-project/libcxx/include/__atomic/ |
H A D | to_gcc_order.h | 22 defined(__ATOMIC_RELEASE) && defined(__ATOMIC_ACQ_REL) && defined(__ATOMIC_SEQ_CST) 34 … : (__order == memory_order_acq_rel ? __ATOMIC_ACQ_REL : __ATOMIC_CONSUME)))); in __to_gcc_order()
|
/freebsd/contrib/llvm-project/libcxx/src/include/ |
H A D | atomic_support.h | 18 defined(__ATOMIC_ACQUIRE) && defined(__ATOMIC_RELEASE) && defined(__ATOMIC_ACQ_REL) && defined(__ATOMIC_SEQ_CST) 43 _AO_Acq_Rel = __ATOMIC_ACQ_REL,
|
/freebsd/sys/sys/ |
H A D | stdatomic.h | 112 #ifndef __ATOMIC_ACQ_REL 113 #define __ATOMIC_ACQ_REL 4 macro 131 memory_order_acq_rel = __ATOMIC_ACQ_REL,
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_atomic.h | 29 memory_order_acq_rel = __ATOMIC_ACQ_REL,
|
/freebsd/contrib/jemalloc/include/jemalloc/internal/ |
H A D | atomic_gcc_atomic.h | 26 return __ATOMIC_ACQ_REL; in atomic_enum_to_builtin()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
H A D | atomic_helpers.h | 28 static_assert(memory_order_acq_rel == __ATOMIC_ACQ_REL, "");
|
/freebsd/contrib/llvm-project/clang/lib/Headers/ |
H A D | stdatomic.h | 73 memory_order_acq_rel = __ATOMIC_ACQ_REL,
|
H A D | opencl-c-base.h | 427 memory_order_acq_rel = __ATOMIC_ACQ_REL,
|
/freebsd/contrib/llvm-project/openmp/runtime/src/include/ |
H A D | ompx.h.var | 51 ompx_acq_rel = __ATOMIC_ACQ_REL,
|
/freebsd/contrib/llvm-project/libcxx/include/__memory/ |
H A D | shared_ptr.h | 71 …g__) && __has_builtin(__atomic_add_fetch) && defined(__ATOMIC_RELAXED) && defined(__ATOMIC_ACQ_REL) 109 return __atomic_add_fetch(&__t, -1, __ATOMIC_ACQ_REL); in __libcpp_atomic_refcount_decrement()
|