Lines Matching refs:byte0
97 uint32_t byte0, byte1; in ldh_c() local
99 if (ldb_asm(addr, &byte0)) in ldh_c()
105 byte0 |= byte1 << 8; in ldh_c()
106 put_ptreg(regs, rz, byte0); in ldh_c()
119 uint32_t byte0, byte1; in sth_c() local
121 byte0 = byte1 = get_ptreg(regs, rz); in sth_c()
123 byte0 &= 0xff; in sth_c()
125 if (stb_asm(addr, byte0)) in sth_c()
144 uint32_t byte0, byte1, byte2, byte3; in ldw_c() local
146 if (ldb_asm(addr, &byte0)) in ldw_c()
161 byte0 |= byte1 << 8; in ldw_c()
162 byte0 |= byte2 << 16; in ldw_c()
163 byte0 |= byte3 << 24; in ldw_c()
165 put_ptreg(regs, rz, byte0); in ldw_c()
178 uint32_t byte0, byte1, byte2, byte3; in stw_c() local
180 byte0 = byte1 = byte2 = byte3 = get_ptreg(regs, rz); in stw_c()
182 byte0 &= 0xff; in stw_c()
184 if (stb_asm(addr, byte0)) in stw_c()