Lines Matching refs:c_op
31 #define BIT_OP(op, c_op, asm_op) \ argument
62 #define TEST_N_BIT_OP(op, c_op, asm_op) \ argument
109 #define BIT_OP(op, c_op, asm_op) \ argument
121 *m = temp c_op (1UL << (nr & 0x1f)); \
126 #define TEST_N_BIT_OP(op, c_op, asm_op) \ argument
135 *m = old c_op (1UL << (nr & 0x1f)); \
148 #define __BIT_OP(op, c_op, asm_op) \ argument
155 *m = temp c_op (1UL << (nr & 0x1f)); \
158 #define __TEST_N_BIT_OP(op, c_op, asm_op) \ argument
165 *m = old c_op (1UL << (nr & 0x1f)); \
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)