Home
last modified time | relevance | path

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/
Datomic_fetch_sub_explicit.pass.cpp44 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/
Dstdatomic.h150 #define atomic_fetch_sub_explicit __c11_atomic_fetch_sub macro
/external/libcxx/include/
Datomic388 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/
DSkAtomics.h124 return std::atomic_fetch_sub_explicit(ap, val, (std::memory_order)mo); in sk_atomic_fetch_sub()
/external/clang/test/Sema/
Datomic-ops.c242 k = atomic_fetch_sub_explicit(&n, k, memory_order_release); in f()