Searched refs:atomic_compare_exchange_strong (Results 1 - 25 of 31) sorted by relevance

12

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_atomic_clang.h74 INLINE bool atomic_compare_exchange_strong(volatile T *a, typename T::Type *cmp, function in namespace:__sanitizer
91 return atomic_compare_exchange_strong(a, cmp, xchg, mo);
H A Dsanitizer_atomic_msvc.h168 INLINE bool atomic_compare_exchange_strong(volatile atomic_uint8_t *a, function in namespace:__sanitizer
194 INLINE bool atomic_compare_exchange_strong(volatile atomic_uintptr_t *a, function in namespace:__sanitizer
207 INLINE bool atomic_compare_exchange_strong(volatile atomic_uint16_t *a, function in namespace:__sanitizer
220 INLINE bool atomic_compare_exchange_strong(volatile atomic_uint32_t *a, function in namespace:__sanitizer
233 INLINE bool atomic_compare_exchange_strong(volatile atomic_uint64_t *a, function in namespace:__sanitizer
251 return atomic_compare_exchange_strong(a, cmp, xchg, mo);
H A Dsanitizer_atomic_clang_mips.h65 INLINE bool atomic_compare_exchange_strong(volatile atomic_uint64_t *ptr, function in namespace:__sanitizer
H A Dsanitizer_mutex.h109 if (atomic_compare_exchange_strong(&state_, &cmp, kWriteLock,
H A Dsanitizer_symbolizer_report.cpp259 if (atomic_compare_exchange_strong(&reporting_thread, &expected, current,
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Datomic_helpers.h102 inline bool atomic_compare_exchange_strong(volatile T *A, typename T::Type *Cmp, function in namespace:scudo
133 atomic_compare_exchange_strong(A, &Cmp, Xchg, memory_order_acquire);
H A Dchunk.h136 if (UNLIKELY(!atomic_compare_exchange_strong(
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_profiling.cpp89 if (atomic_compare_exchange_strong(&TLD.Allocators, &Allocators, 1,
139 if (atomic_compare_exchange_strong(&TLD.FCT, &FCT, 1, memory_order_acq_rel)) {
317 if (!atomic_compare_exchange_strong(&ProfilerLogStatus, &CurrentStatus,
359 if (!atomic_compare_exchange_strong(&ProfilerLogStatus, &CurrentStatus,
H A Dxray_interface.cpp185 if (!atomic_compare_exchange_strong(
236 if (!atomic_compare_exchange_strong(
H A Dxray_fdr_logging.cpp288 if (!atomic_compare_exchange_strong(&LogFlushStatus, &Result,
389 if (!atomic_compare_exchange_strong(&LoggingStatus, &CurrentStatus,
620 if (!atomic_compare_exchange_strong(&LoggingStatus, &CurrentStatus,
H A Dxray_basic_logging.cpp376 if (!atomic_compare_exchange_strong(&BasicInitialized, &Expected, 1,
444 if (!atomic_compare_exchange_strong(&BasicInitialized, &Expected, 0,
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan_minimal/
H A Dubsan_minimal_handlers.cpp41 if (!__sanitizer::atomic_compare_exchange_strong(
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/
H A Dstdatomic.h126 #define atomic_compare_exchange_strong(object, expected, desired) __c11_atomic_compare_exchange_strong(object, expected, desired, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST) macro
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_platform_mac.cpp57 if (!atomic_compare_exchange_strong(a, (uintptr_t *)&cmp, (uintptr_t)val,
H A Dtsan_mutex.cpp231 if (atomic_compare_exchange_strong(&state_, &cmp, kWriteLock,
H A Dtsan_sync.cpp247 if (atomic_compare_exchange_strong((atomic_uint32_t*)meta, &idx0,
H A Dtsan_fd.cpp84 if (atomic_compare_exchange_strong(pl1, &l1, (uptr)p, memory_order_acq_rel))
H A Dtsan_clock.cpp98 if (atomic_compare_exchange_strong(ref, &v, v - 1, memory_order_acq_rel))
/freebsd-11-stable/contrib/jemalloc/include/jemalloc/internal/
H A Datomic.h147 return (!atomic_compare_exchange_strong(a, &c, s));
371 return (!atomic_compare_exchange_strong(a, &c, s));
/freebsd-11-stable/share/man/man3/
H A DMakefile26 MLINKS= ATOMIC_VAR_INIT.3 atomic_compare_exchange_strong.3 \
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/dd/
H A Ddd_interceptors.cpp168 if (atomic_compare_exchange_strong(p, &cond, (uptr)newcond,
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/dfsan/
H A Ddfsan.cpp183 if (atomic_compare_exchange_strong(table_ent, &label, kInitializingLabel,
/freebsd-11-stable/sys/sys/
H A Dstdatomic.h343 #define atomic_compare_exchange_strong(object, expected, desired) \ macro
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_thread.cpp204 if (atomic_compare_exchange_strong(
H A Dasan_report.cpp448 if (cmp == 0 && atomic_compare_exchange_strong(&AsanBuggyPcPool[i], &cmp,

Completed in 150 milliseconds

12