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

  /external/linux-kselftest/tools/testing/selftests/futex/include/
atomic.h 32 * atomic_cmpxchg() - Atomic compare and exchange
40 atomic_cmpxchg(atomic_t *addr, int oldval, int newval) function
  /external/libdrm/
xf86atomic.h 56 # define atomic_cmpxchg(x, oldv, newv) __sync_val_compare_and_swap (&(x)->atomic, oldv, newv) macro
76 # define atomic_cmpxchg(x, oldv, newv) AO_compare_and_swap_full(&(x)->atomic, oldv, newv) macro
100 # define atomic_cmpxchg(x, oldv, newv) atomic_cas_uint (&(x)->atomic, oldv, newv) macro
112 while (c != unless && (old = atomic_cmpxchg(v, c, c + add)) != c)

Completed in 90 milliseconds