Searched refs:atomic_fetch_add_explicit (Results 1 – 11 of 11) sorted by relevance
| /freebsd-13.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-13.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-13.1/lib/libc/tests/resolv/ |
| H A D | resolv_test.c | 200 atomic_fetch_add_explicit(&ask[i], 1, memory_order_relaxed); in resolvone() 202 atomic_fetch_add_explicit(&got[i], 1, memory_order_relaxed); in resolvone()
|
| /freebsd-13.1/contrib/jemalloc/include/jemalloc/internal/ |
| H A D | atomic_c11.h | 73 return atomic_fetch_add_explicit(a, val, mo); \
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Headers/ |
| H A D | stdatomic.h | 133 #define atomic_fetch_add_explicit __c11_atomic_fetch_add macro
|
| H A D | opencl-c.h | 13347 int __ovld atomic_fetch_add_explicit(volatile atomic_int *object, int operand, memory_order order); 13348 uint __ovld atomic_fetch_add_explicit(volatile atomic_uint *object, uint operand, memory_order orde… 13362 long __ovld atomic_fetch_add_explicit(volatile atomic_long *object, long operand, memory_order orde… 13363 ulong __ovld atomic_fetch_add_explicit(volatile atomic_ulong *object, ulong operand, memory_order o… 13376 uintptr_t __ovld atomic_fetch_add_explicit(volatile atomic_uintptr_t *object, ptrdiff_t operand, me… 13381 int __ovld atomic_fetch_add_explicit(volatile atomic_int *object, int operand, memory_order order, … 13382 uint __ovld atomic_fetch_add_explicit(volatile atomic_uint *object, uint operand, memory_order orde… 13396 long __ovld atomic_fetch_add_explicit(volatile atomic_long *object, long operand, memory_order orde… 13397 ulong __ovld atomic_fetch_add_explicit(volatile atomic_ulong *object, ulong operand, memory_order o… 13412 uintptr_t __ovld atomic_fetch_add_explicit(volatile atomic_uintptr_t *object, ptrdiff_t operand, me…
|
| /freebsd-13.1/lib/librt/ |
| H A D | sigev_thread.c | 201 sn->sn_gen = atomic_fetch_add_explicit(&sigev_generation, 1, in __sigev_alloc()
|
| /freebsd-13.1/contrib/llvm-project/libcxx/include/ |
| H A D | atomic | 370 Integral atomic_fetch_add_explicit(volatile atomic<Integral>* obj, Integral op, 373 Integral atomic_fetch_add_explicit(atomic<Integral>* obj, Integral op, 438 T* atomic_fetch_add_explicit(volatile atomic<T*>* obj, ptrdiff_t op, 442 T* atomic_fetch_add_explicit(atomic<T*>* obj, ptrdiff_t op, memory_order m) noexcept; 2236 // atomic_fetch_add_explicit 2245 atomic_fetch_add_explicit(volatile atomic<_Tp>* __o, typename atomic<_Tp>::difference_type __op, me… 2257 atomic_fetch_add_explicit(atomic<_Tp>* __o, typename atomic<_Tp>::difference_type __op, memory_orde… 2265 atomic_fetch_add_explicit(volatile atomic<_Tp*>* __o, typename atomic<_Tp*>::difference_type __op, … 2273 atomic_fetch_add_explicit(atomic<_Tp*>* __o, typename atomic<_Tp*>::difference_type __op, memory_or…
|
| /freebsd-13.1/share/man/man3/ |
| H A D | Makefile | 82 ATOMIC_VAR_INIT.3 atomic_fetch_add_explicit.3 \
|
| /freebsd-13.1/contrib/llvm-project/openmp/runtime/src/ |
| H A D | kmp_lock.cpp | 619 kmp_uint32 my_ticket = std::atomic_fetch_add_explicit( in __kmp_acquire_ticket_lock_timed_template() 713 std::atomic_fetch_add_explicit(&lck->lk.now_serving, 1U, in __kmp_release_ticket_lock() 802 std::atomic_fetch_add_explicit(&lck->lk.depth_locked, 1, in __kmp_acquire_nested_ticket_lock() 838 retval = std::atomic_fetch_add_explicit(&lck->lk.depth_locked, 1, in __kmp_test_nested_ticket_lock() 873 if ((std::atomic_fetch_add_explicit(&lck->lk.depth_locked, -1, in __kmp_release_nested_ticket_lock()
|