Lines Matching refs:new
32 abi_ulong new = env->gr[24]; in hppa_lws() local
44 new = tswap32(new); in hppa_lws()
45 ret = qatomic_cmpxchg((uint32_t *)g2h(cs, addr), old, new); in hppa_lws()
54 if (((addr | old | new) & ((1 << size) - 1)) in hppa_lws()
57 || !access_ok(cs, VERIFY_READ, new, 1 << size)) { in hppa_lws()
65 new = *(uint8_t *)g2h(cs, new); in hppa_lws()
66 ret = qatomic_cmpxchg((uint8_t *)g2h(cs, addr), old, new); in hppa_lws()
71 new = *(uint16_t *)g2h(cs, new); in hppa_lws()
72 ret = qatomic_cmpxchg((uint16_t *)g2h(cs, addr), old, new); in hppa_lws()
77 new = *(uint32_t *)g2h(cs, new); in hppa_lws()
78 ret = qatomic_cmpxchg((uint32_t *)g2h(cs, addr), old, new); in hppa_lws()
85 n64 = *(uint64_t *)g2h(cs, new); in hppa_lws()