Lines Matching refs:byte1
97 uint32_t byte0, byte1; in ldh_c() local
102 if (ldb_asm(addr, &byte1)) in ldh_c()
105 byte0 |= byte1 << 8; in ldh_c()
119 uint32_t byte0, byte1; in sth_c() local
121 byte0 = byte1 = get_ptreg(regs, rz); in sth_c()
129 byte1 = (byte1 >> 8) & 0xff; in sth_c()
130 if (stb_asm(addr, byte1)) in sth_c()
144 uint32_t byte0, byte1, byte2, byte3; in ldw_c() local
150 if (ldb_asm(addr, &byte1)) in ldw_c()
161 byte0 |= byte1 << 8; 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()
188 byte1 = (byte1 >> 8) & 0xff; in stw_c()
189 if (stb_asm(addr, byte1)) in stw_c()