Home
last modified time | relevance | path

Searched refs:__ATOMIC_ACQ_REL (Results 1 – 11 of 11) sorted by relevance

/freebsd/crypto/openssl/crypto/
H A Dthreads_pthread.c201 # 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 Dto_gcc_order.h22 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 Datomic_support.h18 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 Dstdatomic.h112 #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 Dsanitizer_atomic.h29 memory_order_acq_rel = __ATOMIC_ACQ_REL,
/freebsd/contrib/jemalloc/include/jemalloc/internal/
H A Datomic_gcc_atomic.h26 return __ATOMIC_ACQ_REL; in atomic_enum_to_builtin()
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Datomic_helpers.h28 static_assert(memory_order_acq_rel == __ATOMIC_ACQ_REL, "");
/freebsd/contrib/llvm-project/clang/lib/Headers/
H A Dstdatomic.h73 memory_order_acq_rel = __ATOMIC_ACQ_REL,
H A Dopencl-c-base.h427 memory_order_acq_rel = __ATOMIC_ACQ_REL,
/freebsd/contrib/llvm-project/openmp/runtime/src/include/
H A Dompx.h.var51 ompx_acq_rel = __ATOMIC_ACQ_REL,
/freebsd/contrib/llvm-project/libcxx/include/__memory/
H A Dshared_ptr.h71 …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()