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

  /bionic/libc/kernel/arch-x86/asm/
atomic_32.h 27 #define atomic_cmpxchg(v, old, new) (cmpxchg(&((v)->counter), (old), (new))) macro
  /ndk/build/platforms/android-5/arch-x86/usr/include/asm/
atomic_32.h 27 #define atomic_cmpxchg(v, old, new) (cmpxchg(&((v)->counter), (old), (new))) macro
  /ndk/build/platforms/android-8/arch-x86/usr/include/asm/
atomic_32.h 27 #define atomic_cmpxchg(v, old, new) (cmpxchg(&((v)->counter), (old), (new))) macro
  /external/kernel-headers/original/asm-arm/
atomic.h 83 static inline int atomic_cmpxchg(atomic_t *ptr, int old, int new) function
88 __asm__ __volatile__("@ atomic_cmpxchg\n"
152 static inline int atomic_cmpxchg(atomic_t *v, int old, int new) function
184 while (c != u && (old = atomic_cmpxchg((v), c, c + a)) != c)
  /external/kernel-headers/original/asm-x86/
atomic_32.h 218 #define atomic_cmpxchg(v, old, new) (cmpxchg(&((v)->counter), (old), (new))) macro
237 old = atomic_cmpxchg((v), c, c + (a));

Completed in 5706 milliseconds