Lines Matching refs:new
41 __u32 bit, old, new; in set_bit() local
50 new = old | bit; in set_bit()
51 } while (cmpxchg_acq(m, old, new) != old); in set_bit()
82 __u32 mask, old, new; in clear_bit() local
91 new = old & mask; in clear_bit()
92 } while (cmpxchg_acq(m, old, new) != old); in clear_bit()
106 __u32 mask, old, new; in clear_bit_unlock() local
115 new = old & mask; in clear_bit_unlock()
116 } while (cmpxchg_rel(m, old, new) != old); in clear_bit_unlock()
131 __u32 const new = *m & ~(1 << (nr & 31)); in __clear_bit_unlock() local
133 ia64_st4_rel_nta(m, new); in __clear_bit_unlock()
163 __u32 bit, old, new; in change_bit() local
172 new = old ^ bit; in change_bit()
173 } while (cmpxchg_acq(m, old, new) != old); in change_bit()
202 __u32 bit, old, new; in test_and_set_bit() local
211 new = old | bit; in test_and_set_bit()
212 } while (cmpxchg_acq(m, old, new) != old); in test_and_set_bit()
256 __u32 mask, old, new; in test_and_clear_bit() local
265 new = old & mask; in test_and_clear_bit()
266 } while (cmpxchg_acq(m, old, new) != old); in test_and_clear_bit()
301 __u32 bit, old, new; in test_and_change_bit() local
310 new = old ^ bit; in test_and_change_bit()
311 } while (cmpxchg_acq(m, old, new) != old); in test_and_change_bit()