Searched refs:new_ (Results 1 - 2 of 2) sorted by relevance

/linux-master/arch/parisc/include/asm/
H A Dcmpxchg.h61 unsigned int new_);
62 extern u64 __cmpxchg_u64(volatile u64 *ptr, u64 old, u64 new_);
63 extern u8 __cmpxchg_u8(volatile u8 *ptr, u8 old, u8 new_);
67 __cmpxchg(volatile void *ptr, unsigned long old, unsigned long new_, int size) argument
71 case 8: return __cmpxchg_u64((u64 *)ptr, old, new_);
74 (unsigned int)old, (unsigned int)new_);
75 case 1: return __cmpxchg_u8((u8 *)ptr, old & 0xff, new_ & 0xff);
93 unsigned long new_, int size)
97 case 8: return __cmpxchg_u64((u64 *)ptr, old, new_);
99 case 4: return __cmpxchg_u32(ptr, old, new_);
91 __cmpxchg_local(volatile void *ptr, unsigned long old, unsigned long new_, int size) argument
[all...]
/linux-master/arch/sparc/include/asm/
H A Dcmpxchg_32.h42 unsigned long __cmpxchg_u32(volatile u32 *m, u32 old, u32 new_);
46 __cmpxchg(volatile void *ptr, unsigned long old, unsigned long new_, int size) argument
50 return __cmpxchg_u32((u32 *)ptr, (u32)old, (u32)new_);

Completed in 157 milliseconds