Searched refs:local_sub_return (Results 1 – 6 of 6) sorted by relevance
/linux/arch/alpha/include/asm/ |
A D | local.h | 38 static __inline__ long local_sub_return(long i, local_t * l) in local_sub_return() function 86 #define local_dec_return(l) local_sub_return(1,(l)) 90 #define local_sub_and_test(i,l) (local_sub_return((i), (l)) == 0) 94 #define local_dec_and_test(l) (local_sub_return(1, (l)) == 0)
|
/linux/arch/mips/include/asm/ |
A D | local.h | 79 static __inline__ long local_sub_return(long i, local_t * l) in local_sub_return() function 151 #define local_dec_return(l) local_sub_return(1, (l)) 163 #define local_sub_and_test(i, l) (local_sub_return((i), (l)) == 0) 183 #define local_dec_and_test(l) (local_sub_return(1, (l)) == 0)
|
/linux/arch/x86/include/asm/ |
A D | local.h | 115 static inline long local_sub_return(long i, local_t *l) in local_sub_return() function 121 #define local_dec_return(l) (local_sub_return(1, l))
|
/linux/arch/powerpc/include/asm/ |
A D | local.h | 74 #define local_dec_return(l) local_sub_return(1LL, l) 76 #define local_sub_and_test(a, l) (local_sub_return((a), (l)) == 0)
|
/linux/include/asm-generic/ |
A D | local.h | 41 #define local_sub_return(i, l) atomic_long_sub_return((i), (&(l)->a)) macro
|
A D | local64.h | 42 #define local64_sub_return(i, l) local_sub_return((i), (&(l)->a))
|
Completed in 6 milliseconds