Home
last modified time | relevance | path

Searched refs:atomic_compare_exchange_strong (Results 1 – 4 of 4) sorted by relevance

/bionic/libc/bionic/
Dfdsan.cpp93 if (atomic_compare_exchange_strong(&overflow, &local_overflow, new_overflow)) { in at()
189 atomic_compare_exchange_strong(&fd_table.error_level, &error_level, in fdsan_error()
276 if (!atomic_compare_exchange_strong(&fde->close_tag, &tag, 0)) { in android_fdsan_close_with_tag()
325 if (!atomic_compare_exchange_strong(&fde->close_tag, &tag, new_tag)) { in android_fdsan_exchange_owner_tag()
Dpthread_key.cpp151 if (atomic_compare_exchange_strong(&key_map[key].seq, &seq, seq + SEQ_INCREMENT_STEP)) { in pthread_key_delete()
/bionic/tests/
Dstdatomic_test.cpp113 ASSERT_TRUE(atomic_compare_exchange_strong(&i, &expected, 456)); in TEST()
114 ASSERT_FALSE(atomic_compare_exchange_strong(&i, &expected, 456)); in TEST()
/bionic/libc/include/
Dstdatomic.h65 using std::atomic_compare_exchange_strong;
333 #define atomic_compare_exchange_strong(object, expected, desired) \ macro