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)\
62 #define TEST_N_BIT_OP(op, c_op, asm_op) \ argument
63 static inline int test_and_##op##_bit(unsigned long nr, volatile unsigned long *m)\
109 #define BIT_OP(op, c_op, asm_op) \ argument
110 static inline void op##_bit(unsigned long nr, volatile unsigned long *m)\
126 #define TEST_N_BIT_OP(op, c_op, asm_op) \ argument
127 static inline int test_and_##op##_bit(unsigned long nr, volatile unsigned long *m)\
148 #define __BIT_OP(op, c_op, asm_op) \ argument
149 static inline void __##op##_bit(unsigned long nr, volatile unsigned long *m) \
158 #define __TEST_N_BIT_OP(op, c_op, asm_op) \ argument
159 static inline int __test_and_##op##_bit(unsigned long nr, volatile unsigned long *m)\
170 #define BIT_OPS(op, c_op, asm_op) \ argument
173 BIT_OP(op, c_op, asm_op) \
176 TEST_N_BIT_OP(op, c_op, asm_op) \
179 __BIT_OP(op, c_op, asm_op) \
182 __TEST_N_BIT_OP(op, c_op, asm_op)