HomeSort by relevance Sort by last modified time
    Searched refs:xch (Results 1 - 2 of 2) sorted by null

  /external/compiler-rt/lib/sanitizer_common/
sanitizer_lfstack.h 40 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/
tsan_interface_atomic.cc 162 template<typename T> T func_cas(volatile T *v, T cmp, T xch) {
163 return __sync_val_compare_and_swap(v, cmp, xch);
220 a128 func_cas(volatile a128 *v, a128 cmp, a128 xch) {
224 *v = xch;

Completed in 217 milliseconds