Lines Matching refs:ibytes
95 unsigned char ibytes[4]; in print_insn_mcore() local
104 status = info->read_memory_func (memaddr, ibytes, 2, info); in print_insn_mcore()
113 inst = (ibytes[0] << 8) | ibytes[1]; in print_insn_mcore()
115 inst = (ibytes[1] << 8) | ibytes[0]; in print_insn_mcore()
239 status = info->read_memory_func (val, ibytes, 4, info); in print_insn_mcore()
247 val = (ibytes[3] << 24) | (ibytes[2] << 16) in print_insn_mcore()
248 | (ibytes[1] << 8) | (ibytes[0]); in print_insn_mcore()
250 val = (ibytes[0] << 24) | (ibytes[1] << 16) in print_insn_mcore()
251 | (ibytes[2] << 8) | (ibytes[3]); in print_insn_mcore()
272 status = info->read_memory_func (val, ibytes, 4, info); in print_insn_mcore()
280 val = (ibytes[3] << 24) | (ibytes[2] << 16) in print_insn_mcore()
281 | (ibytes[1] << 8) | (ibytes[0]); in print_insn_mcore()
283 val = (ibytes[0] << 24) | (ibytes[1] << 16) in print_insn_mcore()
284 | (ibytes[2] << 8) | (ibytes[3]); in print_insn_mcore()