Home | History | Annotate | Download | only in atomic

Lines Matching refs:old

44 	uint64_t old, new;
47 old = *addr;
48 new = old ^ val;
49 } while (atomic_cas_64(addr, old, new) != old);
50 return old;
56 uint64_t old, new;
59 old = *addr;
60 new = old ^ val;
61 } while (atomic_cas_64(addr, old, new) != old);