Searched refs:atomic_compare_exchange_strong (Results 1 – 4 of 4) sorted by relevance
/bionic/libc/bionic/ |
D | fdsan.cpp | 93 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()
|
D | pthread_key.cpp | 151 if (atomic_compare_exchange_strong(&key_map[key].seq, &seq, seq + SEQ_INCREMENT_STEP)) { in pthread_key_delete()
|
/bionic/tests/ |
D | stdatomic_test.cpp | 113 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/ |
D | stdatomic.h | 65 using std::atomic_compare_exchange_strong; 333 #define atomic_compare_exchange_strong(object, expected, desired) \ macro
|