Searched defs:xch (Results 1 - 2 of 2) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_lfstack.h40 u64 xch = (u64)(uptr)p | cnt; local
42 if (atomic_compare_exchange_weak(&head_, &cmp, xch,
56 u64 xch = (u64)(uptr)nxt | cnt; local
57 if (atomic_compare_exchange_weak(&head_, &cmp, xch,
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_interface_atomic.cc162 template<typename T> T func_cas(volatile T *v, T cmp, T xch) { argument
163 return __sync_val_compare_and_swap(v, cmp, xch);
220 a128 func_cas(volatile a128 *v, a128 cmp, a128 xch) { argument
224 *v = xch;

Completed in 238 milliseconds