Searched refs:local_sub_return (Results 1 - 7 of 7) sorted by relevance

/linux-4.4.14/arch/alpha/include/asm/
H A Dlocal.h37 static __inline__ long local_sub_return(long i, local_t * l) local_sub_return() function
85 #define local_dec_return(l) local_sub_return(1,(l))
89 #define local_sub_and_test(i,l) (local_sub_return((i), (l)) == 0)
93 #define local_dec_and_test(l) (local_sub_return(1, (l)) == 0)
/linux-4.4.14/arch/mips/include/asm/
H A Dlocal.h74 static __inline__ long local_sub_return(long i, local_t * l) local_sub_return() function
83 "1:" __LL "%1, %2 # local_sub_return \n" local_sub_return()
97 "1:" __LL "%1, %2 # local_sub_return \n" local_sub_return()
142 #define local_dec_return(l) local_sub_return(1, (l))
154 #define local_sub_and_test(i, l) (local_sub_return((i), (l)) == 0)
174 #define local_dec_and_test(l) (local_sub_return(1, (l)) == 0)
/linux-4.4.14/arch/powerpc/include/asm/
H A Dlocal.h41 static __inline__ long local_sub_return(long a, local_t *l) local_sub_return() function
46 "1:" PPC_LLARX(%0,0,%2,0) " # local_sub_return\n\ local_sub_return()
138 #define local_sub_and_test(a, l) (local_sub_return((a), (l)) == 0)
/linux-4.4.14/arch/m32r/include/asm/
H A Dlocal.h80 * local_sub_return - subtract long from local variable and return it
86 static inline long local_sub_return(long i, local_t *l) local_sub_return() function
93 "# local_sub_return \n\t" local_sub_return()
126 #define local_sub(i, l) ((void) local_sub_return((i), (l)))
137 #define local_sub_and_test(i, l) (local_sub_return((i), (l)) == 0)
/linux-4.4.14/arch/x86/include/asm/
H A Dlocal.h114 static inline long local_sub_return(long i, local_t *l) local_sub_return() function
120 #define local_dec_return(l) (local_sub_return(1, l))
/linux-4.4.14/include/asm-generic/
H A Dlocal.h40 #define local_sub_return(i, l) atomic_long_sub_return((i), (&(l)->a)) macro
H A Dlocal64.h41 #define local64_sub_return(i, l) local_sub_return((i), (&(l)->a))

Completed in 246 milliseconds