Lines Matching refs:orig
46 unsigned long orig, temp; \
57 : "=&r"(orig), "=&r"(temp), \
62 orig; \
185 unsigned long res, orig; in test_and_set_bit_lock() local
190 orig = __test_bit_op(*m, "%0", in test_and_set_bit_lock()
193 res = (orig & BIT(bit)) != 0; in test_and_set_bit_lock()
229 unsigned long res, orig; in test_and_clear_bit() local
241 orig = __test_bit_op(*m, "%0", in test_and_clear_bit()
245 res = (orig & BIT(bit)) != 0; in test_and_clear_bit()
266 unsigned long res, orig; in test_and_change_bit() local
273 orig = __test_bit_op(*m, "%0", in test_and_change_bit()
276 res = (orig & BIT(bit)) != 0; in test_and_change_bit()