Home
last modified time | relevance | path

Searched refs:atomic_fetch_sub_explicit (Results 1 – 9 of 9) sorted by relevance

/external/libcxx/test/std/atomics/atomics.types.operations/atomics.types.operations.req/
Datomic_fetch_sub_explicit.pass.cpp45 assert(std::atomic_fetch_sub_explicit(&t, T(2), in operator ()()
53 assert(std::atomic_fetch_sub_explicit(&t, T(2), in operator ()()
68 assert(std::atomic_fetch_sub_explicit(&t, 2, in testp()
77 assert(std::atomic_fetch_sub_explicit(&t, 2, in testp()
/external/elfutils/lib/
Dstdatomic-fbsd.h281 #define atomic_fetch_sub_explicit(object, operand, order) \ macro
306 #define atomic_fetch_sub_explicit(object, operand, order) \ macro
355 #define atomic_fetch_sub_explicit(object, operand, order) \ macro
389 atomic_fetch_sub_explicit(object, operand, memory_order_seq_cst)
Ddynamicsizehash_concurrent.c309 atomic_fetch_sub_explicit(&htab->resizing_state, STATE_INCREMENT, in resize_worker()
323 atomic_fetch_sub_explicit(&htab->resizing_state, STATE_INCREMENT, in resize_worker()
331 atomic_fetch_sub_explicit(&htab->resizing_state, STATE_INCREMENT, in resize_worker()
448 atomic_fetch_sub_explicit(&htab->filled, 1, memory_order_relaxed); in INSERT()
/external/jemalloc_new/include/jemalloc/internal/
Datomic_c11.h79 return atomic_fetch_sub_explicit(a, val, mo); \
/external/clang/lib/Headers/
Dstdatomic.h150 #define atomic_fetch_sub_explicit __c11_atomic_fetch_sub macro
Dopencl-c.h14784 int __ovld atomic_fetch_sub_explicit(volatile atomic_int *object, int operand, memory_order order);
14785 int __ovld atomic_fetch_sub_explicit(volatile atomic_int *object, int operand, memory_order order, …
14787 uint __ovld atomic_fetch_sub_explicit(volatile atomic_uint *object, uint operand, memory_order orde…
14788 uint __ovld atomic_fetch_sub_explicit(volatile atomic_uint *object, uint operand, memory_order orde…
14834 long __ovld atomic_fetch_sub_explicit(volatile atomic_long *object, long operand, memory_order orde…
14835 long __ovld atomic_fetch_sub_explicit(volatile atomic_long *object, long operand, memory_order orde…
14837 ulong __ovld atomic_fetch_sub_explicit(volatile atomic_ulong *object, ulong operand, memory_order o…
14838 ulong __ovld atomic_fetch_sub_explicit(volatile atomic_ulong *object, ulong operand, memory_order o…
14886 uintptr_t __ovld atomic_fetch_sub_explicit(volatile atomic_uintptr_t *object, ptrdiff_t operand, me…
14887 uintptr_t __ovld atomic_fetch_sub_explicit(volatile atomic_uintptr_t *object, ptrdiff_t operand, me…
/external/libcxx/include/
Datomic395 atomic_fetch_sub_explicit(volatile atomic<Integral>* obj, Integral op,
399 atomic_fetch_sub_explicit(atomic<Integral>* obj, Integral op,
476 atomic_fetch_sub_explicit(volatile atomic<T*>* obj, ptrdiff_t op,
480 atomic_fetch_sub_explicit(atomic<T*>* obj, ptrdiff_t op, memory_order m) noexcept;
1519 // atomic_fetch_sub_explicit
1528 atomic_fetch_sub_explicit(volatile atomic<_Tp>* __o, _Tp __op, memory_order __m) _NOEXCEPT
1540 atomic_fetch_sub_explicit(atomic<_Tp>* __o, _Tp __op, memory_order __m) _NOEXCEPT
1548 atomic_fetch_sub_explicit(volatile atomic<_Tp*>* __o, ptrdiff_t __op,
1557 atomic_fetch_sub_explicit(atomic<_Tp*>* __o, ptrdiff_t __op, memory_order __m) _NOEXCEPT
/external/pthreadpool/src/
Dthreadpool-pthreads.c222 if (atomic_fetch_sub_explicit(&threadpool->active_threads, 1, memory_order_relaxed) == 1) { in checkin_worker_thread()
228 if (atomic_fetch_sub_explicit(&threadpool->active_threads, 1, memory_order_relaxed) == 1) { in checkin_worker_thread()
323 …const size_t item_id = atomic_fetch_sub_explicit(&other_thread->range_end, 1, memory_order_relaxed… in thread_parallelize_1d()
/external/clang/test/Sema/
Datomic-ops.c251 k = atomic_fetch_sub_explicit(&n, k, memory_order_release); in f()