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

  /bionic/libc/kernel/arch-sh/asm/
system.h 40 #define __xchg(ptr, x, size) ({ unsigned long __xchg__res; volatile void *__xchg_ptr = (ptr); switch (size) { case 4: __xchg__res = xchg_u32(__xchg_ptr, x); break; case 1: __xchg__res = xchg_u8(__xchg_ptr, x); break; default: __xchg_called_with_bad_pointer(); __xchg__res = x; break; } __xchg__res; }) macro
42 #define xchg(ptr,x) ((__typeof__(*(ptr)))__xchg((ptr),(unsigned long)(x), sizeof(*(ptr))))
  /bionic/libc/kernel/arch-x86/asm/
cmpxchg_32.h 17 #define xchg(ptr,v) ((__typeof__(*(ptr)))__xchg((unsigned long)(v),(ptr),sizeof(*(ptr))))
  /development/ndk/platforms/android-5/arch-x86/include/asm/
cmpxchg_32.h 17 #define xchg(ptr,v) ((__typeof__(*(ptr)))__xchg((unsigned long)(v),(ptr),sizeof(*(ptr))))
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/asm/
cmpxchg_32.h 17 #define xchg(ptr,v) ((__typeof__(*(ptr)))__xchg((unsigned long)(v),(ptr),sizeof(*(ptr))))
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/asm/
cmpxchg_32.h 17 #define xchg(ptr,v) ((__typeof__(*(ptr)))__xchg((unsigned long)(v),(ptr),sizeof(*(ptr))))
  /external/kernel-headers/original/asm-arm/
system.h 96 ((__typeof__(*(ptr)))__xchg((unsigned long)(x),(ptr),sizeof(*(ptr))))
370 static inline unsigned long __xchg(unsigned long x, volatile void *ptr, int size) function
  /external/kernel-headers/original/asm-x86/
cmpxchg_32.h 11 #define xchg(ptr,v) ((__typeof__(*(ptr)))__xchg((unsigned long)(v),(ptr),sizeof(*(ptr))))
75 static inline unsigned long __xchg(unsigned long x, volatile void * ptr, int size) function

Completed in 2531 milliseconds