Home
last modified time | relevance | path

Searched refs:atomic_fetch_or (Results 1 – 5 of 5) sorted by relevance

/external/libcxx/test/std/atomics/atomics.types.operations/atomics.types.operations.req/
Datomic_fetch_or.pass.cpp34 assert(std::atomic_fetch_or(&t, T(2)) == T(1)); in test()
41 assert(std::atomic_fetch_or(&t, T(2)) == T(3)); in test()
/external/clang/lib/Headers/
Dstdatomic.h152 #define atomic_fetch_or(object, operand) __c11_atomic_fetch_or(object, operand, __ATOMIC_SEQ_CST) macro
/external/clang/test/CodeGen/
Datomic-ops.c106 return atomic_fetch_or(i, 1); in fi3e()
/external/libcxx/include/
Datomic412 atomic_fetch_or(volatile atomic<Integral>* obj, Integral op) noexcept;
416 atomic_fetch_or(atomic<Integral>* obj, Integral op) noexcept;
1519 // atomic_fetch_or
1528 atomic_fetch_or(volatile atomic<_Tp>* __o, _Tp __op) _NOEXCEPT
1540 atomic_fetch_or(atomic<_Tp>* __o, _Tp __op) _NOEXCEPT
/external/clang/test/Sema/
Datomic-ops.c239 k = atomic_fetch_or(&n, k); in f()