Home | History | Annotate | Download | only in atomic

Lines Matching refs:old

42 	uint32_t old, new;
45 old = *addr;
46 new = old ^ val;
47 } while (atomic_cas_32(addr, old, new) != old);
48 return old;
54 uint32_t old, new;
57 old = *addr;
58 new = old ^ val;
59 } while (atomic_cas_32(addr, old, new) != old);