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/ |
D | atomic_fetch_or.pass.cpp | 34 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/ |
D | stdatomic.h | 152 #define atomic_fetch_or(object, operand) __c11_atomic_fetch_or(object, operand, __ATOMIC_SEQ_CST) macro
|
/external/clang/test/CodeGen/ |
D | atomic-ops.c | 106 return atomic_fetch_or(i, 1); in fi3e()
|
/external/libcxx/include/ |
D | atomic | 412 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/ |
D | atomic-ops.c | 239 k = atomic_fetch_or(&n, k); in f()
|