Lines Matching refs:temp
72 unsigned long temp; in set_bit() local
82 : "=&r" (temp), "=" GCC_OFF_SMALL_ASM() (*m) in set_bit()
91 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m) in set_bit()
93 } while (unlikely(!temp)); in set_bit()
103 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m) in set_bit()
105 } while (unlikely(!temp)); in set_bit()
124 unsigned long temp; in clear_bit() local
134 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m) in clear_bit()
143 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m) in clear_bit()
145 } while (unlikely(!temp)); in clear_bit()
155 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m) in clear_bit()
157 } while (unlikely(!temp)); in clear_bit()
191 unsigned long temp; in change_bit() local
200 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m) in change_bit()
204 unsigned long temp; in change_bit() local
213 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m) in change_bit()
215 } while (unlikely(!temp)); in change_bit()
238 unsigned long temp; in test_and_set_bit() local
248 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m), "=&r" (res) in test_and_set_bit()
253 unsigned long temp; in test_and_set_bit() local
262 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m), "=&r" (res) in test_and_set_bit()
267 res = temp & (1UL << bit); in test_and_set_bit()
292 unsigned long temp; in test_and_set_bit_lock() local
302 : "=&r" (temp), "+m" (*m), "=&r" (res) in test_and_set_bit_lock()
307 unsigned long temp; in test_and_set_bit_lock() local
316 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m), "=&r" (res) in test_and_set_bit_lock()
321 res = temp & (1UL << bit); in test_and_set_bit_lock()
347 unsigned long temp; in test_and_clear_bit() local
358 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m), "=&r" (res) in test_and_clear_bit()
364 unsigned long temp; in test_and_clear_bit() local
372 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m), "=&r" (res) in test_and_clear_bit()
375 } while (unlikely(!temp)); in test_and_clear_bit()
379 unsigned long temp; in test_and_clear_bit() local
389 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m), "=&r" (res) in test_and_clear_bit()
394 res = temp & (1UL << bit); in test_and_clear_bit()
421 unsigned long temp; in test_and_change_bit() local
431 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m), "=&r" (res) in test_and_change_bit()
436 unsigned long temp; in test_and_change_bit() local
445 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m), "=&r" (res) in test_and_change_bit()
450 res = temp & (1UL << bit); in test_and_change_bit()