Searched refs:atomic_fetch_sub_explicit (Results 1 – 5 of 5) sorted by relevance
/external/libcxx/test/std/atomics/atomics.types.operations/atomics.types.operations.req/ |
D | atomic_fetch_sub_explicit.pass.cpp | 44 assert(std::atomic_fetch_sub_explicit(&t, T(2), in test() 52 assert(std::atomic_fetch_sub_explicit(&t, T(2), in test() 67 assert(std::atomic_fetch_sub_explicit(&t, 2, in testp() 76 assert(std::atomic_fetch_sub_explicit(&t, 2, in testp()
|
/external/clang/lib/Headers/ |
D | stdatomic.h | 150 #define atomic_fetch_sub_explicit __c11_atomic_fetch_sub macro
|
/external/libcxx/include/ |
D | atomic | 388 atomic_fetch_sub_explicit(volatile atomic<Integral>* obj, Integral op, 392 atomic_fetch_sub_explicit(atomic<Integral>* obj, Integral op, 469 atomic_fetch_sub_explicit(volatile atomic<T*>* obj, ptrdiff_t op, 473 atomic_fetch_sub_explicit(atomic<T*>* obj, ptrdiff_t op, memory_order m) noexcept; 1424 // atomic_fetch_sub_explicit 1433 atomic_fetch_sub_explicit(volatile atomic<_Tp>* __o, _Tp __op, memory_order __m) _NOEXCEPT 1445 atomic_fetch_sub_explicit(atomic<_Tp>* __o, _Tp __op, memory_order __m) _NOEXCEPT 1453 atomic_fetch_sub_explicit(volatile atomic<_Tp*>* __o, ptrdiff_t __op, 1462 atomic_fetch_sub_explicit(atomic<_Tp*>* __o, ptrdiff_t __op, memory_order __m) _NOEXCEPT
|
/external/skia/include/private/ |
D | SkAtomics.h | 124 return std::atomic_fetch_sub_explicit(ap, val, (std::memory_order)mo); in sk_atomic_fetch_sub()
|
/external/clang/test/Sema/ |
D | atomic-ops.c | 242 k = atomic_fetch_sub_explicit(&n, k, memory_order_release); in f()
|