Searched refs:atomic_fetch_add_explicit (Results 1 – 10 of 10) sorted by relevance
| /freebsd-12.1/sys/sys/ |
| H A D | stdatomic.h | 243 #define atomic_fetch_add_explicit(object, operand, order) \ macro 268 #define atomic_fetch_add_explicit(object, operand, order) \ macro 316 #define atomic_fetch_add_explicit(object, operand, order) \ macro 351 atomic_fetch_add_explicit(object, operand, memory_order_seq_cst)
|
| /freebsd-12.1/crypto/openssl/include/internal/ |
| H A D | tsan_assist.h | 59 # define tsan_counter(ptr) atomic_fetch_add_explicit((ptr), 1, memory_order_relaxed) 60 # define tsan_decr(ptr) atomic_fetch_add_explicit((ptr), -1, memory_order_relaxed)
|
| H A D | refcount.h | 34 *ret = atomic_fetch_add_explicit(val, 1, memory_order_relaxed) + 1; in CRYPTO_UP_REF()
|
| /freebsd-12.1/contrib/jemalloc/include/jemalloc/internal/ |
| H A D | atomic_c11.h | 73 return atomic_fetch_add_explicit(a, val, mo); \
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Headers/ |
| H A D | stdatomic.h | 147 #define atomic_fetch_add_explicit __c11_atomic_fetch_add macro
|
| H A D | opencl-c.h | 13681 int __ovld atomic_fetch_add_explicit(volatile atomic_int *object, int operand, memory_order order); 13682 int __ovld atomic_fetch_add_explicit(volatile atomic_int *object, int operand, memory_order order, … 13684 uint __ovld atomic_fetch_add_explicit(volatile atomic_uint *object, uint operand, memory_order orde… 13685 uint __ovld atomic_fetch_add_explicit(volatile atomic_uint *object, uint operand, memory_order orde… 13731 long __ovld atomic_fetch_add_explicit(volatile atomic_long *object, long operand, memory_order orde… 13732 long __ovld atomic_fetch_add_explicit(volatile atomic_long *object, long operand, memory_order orde… 13734 ulong __ovld atomic_fetch_add_explicit(volatile atomic_ulong *object, ulong operand, memory_order o… 13735 ulong __ovld atomic_fetch_add_explicit(volatile atomic_ulong *object, ulong operand, memory_order o… 13786 uintptr_t __ovld atomic_fetch_add_explicit(volatile atomic_uintptr_t *object, ptrdiff_t operand, me… 13787 uintptr_t __ovld atomic_fetch_add_explicit(volatile atomic_uintptr_t *object, ptrdiff_t operand, me…
|
| /freebsd-12.1/contrib/libc++/include/ |
| H A D | atomic | 379 atomic_fetch_add_explicit(volatile atomic<Integral>* obj, Integral op, 383 atomic_fetch_add_explicit(atomic<Integral>* obj, Integral op, 460 atomic_fetch_add_explicit(volatile atomic<T*>* obj, ptrdiff_t op, 464 atomic_fetch_add_explicit(atomic<T*>* obj, ptrdiff_t op, memory_order m) noexcept; 1434 // atomic_fetch_add_explicit 1443 atomic_fetch_add_explicit(volatile atomic<_Tp>* __o, _Tp __op, memory_order __m) _NOEXCEPT 1455 atomic_fetch_add_explicit(atomic<_Tp>* __o, _Tp __op, memory_order __m) _NOEXCEPT 1463 atomic_fetch_add_explicit(volatile atomic<_Tp*>* __o, ptrdiff_t __op, 1472 atomic_fetch_add_explicit(atomic<_Tp*>* __o, ptrdiff_t __op, memory_order __m) _NOEXCEPT
|
| /freebsd-12.1/lib/librt/ |
| H A D | sigev_thread.c | 201 sn->sn_gen = atomic_fetch_add_explicit(&sigev_generation, 1, in __sigev_alloc()
|
| /freebsd-12.1/share/man/man3/ |
| H A D | Makefile | 34 ATOMIC_VAR_INIT.3 atomic_fetch_add_explicit.3 \
|
| /freebsd-12.1/contrib/openmp/runtime/src/ |
| H A D | kmp_lock.cpp | 641 kmp_uint32 my_ticket = std::atomic_fetch_add_explicit( in __kmp_acquire_ticket_lock_timed_template() 737 std::atomic_fetch_add_explicit(&lck->lk.now_serving, 1U, in __kmp_release_ticket_lock() 826 std::atomic_fetch_add_explicit(&lck->lk.depth_locked, 1, in __kmp_acquire_nested_ticket_lock() 863 retval = std::atomic_fetch_add_explicit(&lck->lk.depth_locked, 1, in __kmp_test_nested_ticket_lock() 898 if ((std::atomic_fetch_add_explicit(&lck->lk.depth_locked, -1, in __kmp_release_nested_ticket_lock()
|