Searched refs:atomic_fetch_and_explicit (Results 1 – 4 of 4) sorted by relevance
/bionic/libc/bionic/ |
D | pthread_rwlock.cpp | 332 atomic_fetch_and_explicit(&rwlock->state, ~STATE_HAVE_PENDING_READERS_FLAG, in __pthread_rwlock_timedrdlock() 399 atomic_fetch_and_explicit(&rwlock->state, ~STATE_HAVE_PENDING_WRITERS_FLAG, in __pthread_rwlock_timedwrlock() 495 old_state = atomic_fetch_and_explicit(&rwlock->state, ~STATE_OWNED_BY_WRITER_FLAG, in pthread_rwlock_unlock()
|
/bionic/libc/include/bits/ |
D | stdatomic.h | 219 #define atomic_fetch_and_explicit(object, operand, order) \ macro 247 atomic_fetch_and_explicit(object, operand, memory_order_seq_cst)
|
/bionic/libc/include/ |
D | stdatomic.h | 78 using std::atomic_fetch_and_explicit;
|
/bionic/tests/ |
D | stdatomic_test.cpp | 178 ASSERT_EQ(0x003, atomic_fetch_and_explicit(&i, 0x2, memory_order_relaxed)); in TEST()
|