Lines Matching refs:bit

71 	int bit = nr & SZLONG_MASK;  in set_bit()  local
83 : "ir" (1UL << bit), GCC_OFF_SMALL_ASM() (*m)); in set_bit()
85 } else if (kernel_uses_llsc && __builtin_constant_p(bit)) { in set_bit()
92 : "ir" (bit), "r" (~0)); in set_bit()
104 : "ir" (1UL << bit)); in set_bit()
123 int bit = nr & SZLONG_MASK; in clear_bit() local
135 : "ir" (~(1UL << bit))); in clear_bit()
137 } else if (kernel_uses_llsc && __builtin_constant_p(bit)) { in clear_bit()
144 : "ir" (bit)); in clear_bit()
156 : "ir" (~(1UL << bit))); in clear_bit()
187 int bit = nr & SZLONG_MASK; in change_bit() local
201 : "ir" (1UL << bit)); in change_bit()
214 : "ir" (1UL << bit)); in change_bit()
231 int bit = nr & SZLONG_MASK; in test_and_set_bit() local
249 : "r" (1UL << bit) in test_and_set_bit()
263 : "r" (1UL << bit) in test_and_set_bit()
267 res = temp & (1UL << bit); in test_and_set_bit()
287 int bit = nr & SZLONG_MASK; in test_and_set_bit_lock() local
303 : "r" (1UL << bit) in test_and_set_bit_lock()
317 : "r" (1UL << bit) in test_and_set_bit_lock()
321 res = temp & (1UL << bit); in test_and_set_bit_lock()
340 int bit = nr & SZLONG_MASK; in test_and_clear_bit() local
359 : "r" (1UL << bit) in test_and_clear_bit()
373 : "ir" (bit) in test_and_clear_bit()
390 : "r" (1UL << bit) in test_and_clear_bit()
394 res = temp & (1UL << bit); in test_and_clear_bit()
414 int bit = nr & SZLONG_MASK; in test_and_change_bit() local
432 : "r" (1UL << bit) in test_and_change_bit()
446 : "r" (1UL << bit) in test_and_change_bit()
450 res = temp & (1UL << bit); in test_and_change_bit()