Lines Matching refs:op
31 #define BIT_OP(op, c_op, asm_op) \ argument
32 static inline void op##_bit(unsigned long nr, volatile unsigned long *m)\
77 #define TEST_N_BIT_OP(op, c_op, asm_op) \ argument
78 static inline int test_and_##op##_bit(unsigned long nr, volatile unsigned long *m)\
124 #define BIT_OP(op, c_op, asm_op) \ argument
125 static inline void op##_bit(unsigned long nr, volatile unsigned long *m)\
141 #define TEST_N_BIT_OP(op, c_op, asm_op) \ argument
142 static inline int test_and_##op##_bit(unsigned long nr, volatile unsigned long *m)\
163 #define __BIT_OP(op, c_op, asm_op) \ argument
164 static inline void __##op##_bit(unsigned long nr, volatile unsigned long *m) \
173 #define __TEST_N_BIT_OP(op, c_op, asm_op) \ argument
174 static inline int __test_and_##op##_bit(unsigned long nr, volatile unsigned long *m)\
185 #define BIT_OPS(op, c_op, asm_op) \ argument
188 BIT_OP(op, c_op, asm_op) \
191 TEST_N_BIT_OP(op, c_op, asm_op) \
194 __BIT_OP(op, c_op, asm_op) \
197 __TEST_N_BIT_OP(op, c_op, asm_op)