Searched refs:atomic_compare_exchange_strong (Results 1 – 7 of 7) sorted by relevance
/bionic/libc/bionic/ |
D | malloc_heapprofd.cpp | 235 if (atomic_compare_exchange_strong(&gHeapprofdState, &expected, in HandleHeapprofdSignal() 237 atomic_compare_exchange_strong(&gHeapprofdState, &expected2, in HandleHeapprofdSignal() 350 if (atomic_compare_exchange_strong(&gHeapprofdState, &expected, kInstallingHook)) { in HeapprofdInstallHooksAtInit() 363 if (atomic_compare_exchange_strong(&gHeapprofdState, &expected, kInstallingHook)) { in InitHeapprofd() 379 if (atomic_compare_exchange_strong(&gHeapprofdState, &expected, kRemovingEphemeralHook)) { in MallocInitHeapprofdHook() 435 if(atomic_compare_exchange_strong(&gHeapprofdState, &expected, kUninstallingHook)){ in DispatchReset()
|
D | fdsan.cpp | 95 if (atomic_compare_exchange_strong(&overflow, &local_overflow, new_overflow)) { in at() 169 atomic_compare_exchange_strong(&fd_table.error_level, &error_level, in fdsan_error() 260 if (!atomic_compare_exchange_strong(&fde->close_tag, &tag, 0)) { in android_fdsan_close_with_tag() 313 if (!atomic_compare_exchange_strong(&fde->close_tag, &tag, new_tag)) { in android_fdsan_exchange_owner_tag()
|
D | fdtrack.cpp | 53 return atomic_compare_exchange_strong(&__android_fdtrack_hook, expected, value); in android_fdtrack_compare_exchange_hook()
|
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 | 110 ASSERT_TRUE(atomic_compare_exchange_strong(&i, &expected, 456)); in TEST() 111 ASSERT_FALSE(atomic_compare_exchange_strong(&i, &expected, 456)); in TEST()
|
/bionic/libc/include/ |
D | stdatomic.h | 65 using std::atomic_compare_exchange_strong;
|
/bionic/libc/include/bits/ |
D | stdatomic.h | 236 #define atomic_compare_exchange_strong(object, expected, desired) \ macro
|