Lines Matching refs:res
93 int res; in __mips_test_and_set_bit() local
98 res = (mask & *a) != 0; in __mips_test_and_set_bit()
101 return res; in __mips_test_and_set_bit()
119 int res; in __mips_test_and_set_bit_lock() local
124 res = (mask & *a) != 0; in __mips_test_and_set_bit_lock()
127 return res; in __mips_test_and_set_bit_lock()
144 int res; in __mips_test_and_clear_bit() local
149 res = (mask & *a) != 0; in __mips_test_and_clear_bit()
152 return res; in __mips_test_and_clear_bit()
169 int res; in __mips_test_and_change_bit() local
174 res = (mask & *a) != 0; in __mips_test_and_change_bit()
177 return res; in __mips_test_and_change_bit()