Lines Matching refs:new
42 __u32 bit, old, new; in set_bit() local
51 new = old | bit; in set_bit()
52 } while (cmpxchg_acq(m, old, new) != old); in set_bit()
83 __u32 mask, old, new; in clear_bit() local
92 new = old & mask; in clear_bit()
93 } while (cmpxchg_acq(m, old, new) != old); in clear_bit()
107 __u32 mask, old, new; in clear_bit_unlock() local
116 new = old & mask; in clear_bit_unlock()
117 } while (cmpxchg_rel(m, old, new) != old); in clear_bit_unlock()
132 __u32 const new = *m & ~(1 << (nr & 31)); in __clear_bit_unlock() local
134 ia64_st4_rel_nta(m, new); in __clear_bit_unlock()
164 __u32 bit, old, new; in change_bit() local
173 new = old ^ bit; in change_bit()
174 } while (cmpxchg_acq(m, old, new) != old); in change_bit()
203 __u32 bit, old, new; in test_and_set_bit() local
212 new = old | bit; in test_and_set_bit()
213 } while (cmpxchg_acq(m, old, new) != old); in test_and_set_bit()
257 __u32 mask, old, new; in test_and_clear_bit() local
266 new = old & mask; in test_and_clear_bit()
267 } while (cmpxchg_acq(m, old, new) != old); in test_and_clear_bit()
302 __u32 bit, old, new; in test_and_change_bit() local
311 new = old ^ bit; in test_and_change_bit()
312 } while (cmpxchg_acq(m, old, new) != old); in test_and_change_bit()