Lines Matching refs:temp
57 unsigned long temp; in set_bit() local
67 : "=&r" (temp), "=" GCC_OFF_SMALL_ASM() (*m) in set_bit()
76 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m) in set_bit()
78 } while (unlikely(!temp)); in set_bit()
88 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m) in set_bit()
90 } while (unlikely(!temp)); in set_bit()
109 unsigned long temp; in clear_bit() local
119 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m) in clear_bit()
128 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m) in clear_bit()
130 } while (unlikely(!temp)); in clear_bit()
140 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m) in clear_bit()
142 } while (unlikely(!temp)); in clear_bit()
176 unsigned long temp; in change_bit() local
185 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m) in change_bit()
189 unsigned long temp; in change_bit() local
198 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m) in change_bit()
200 } while (unlikely(!temp)); in change_bit()
223 unsigned long temp; in test_and_set_bit() local
233 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m), "=&r" (res) in test_and_set_bit()
238 unsigned long temp; in test_and_set_bit() local
247 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m), "=&r" (res) in test_and_set_bit()
252 res = temp & (1UL << bit); in test_and_set_bit()
277 unsigned long temp; in test_and_set_bit_lock() local
287 : "=&r" (temp), "+m" (*m), "=&r" (res) in test_and_set_bit_lock()
292 unsigned long temp; in test_and_set_bit_lock() local
301 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m), "=&r" (res) in test_and_set_bit_lock()
306 res = temp & (1UL << bit); in test_and_set_bit_lock()
332 unsigned long temp; in test_and_clear_bit() local
343 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m), "=&r" (res) in test_and_clear_bit()
349 unsigned long temp; in test_and_clear_bit() local
357 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m), "=&r" (res) in test_and_clear_bit()
360 } while (unlikely(!temp)); in test_and_clear_bit()
364 unsigned long temp; in test_and_clear_bit() local
374 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m), "=&r" (res) in test_and_clear_bit()
379 res = temp & (1UL << bit); in test_and_clear_bit()
406 unsigned long temp; in test_and_change_bit() local
416 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m), "=&r" (res) in test_and_change_bit()
421 unsigned long temp; in test_and_change_bit() local
430 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m), "=&r" (res) in test_and_change_bit()
435 res = temp & (1UL << bit); in test_and_change_bit()