Searched refs:ibytes (Results 1 – 2 of 2) sorted by relevance
/toolchain/binutils/binutils-2.27/opcodes/ |
D | mcore-dis.c | 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() [all …]
|
D | microblaze-dis.c | 171 unsigned char ibytes[4]; in read_insn_microblaze() local 176 status = info->read_memory_func (memaddr, ibytes, 4, info); in read_insn_microblaze() 185 inst = (ibytes[0] << 24) | (ibytes[1] << 16) | (ibytes[2] << 8) | ibytes[3]; in read_insn_microblaze() 187 inst = (ibytes[3] << 24) | (ibytes[2] << 16) | (ibytes[1] << 8) | ibytes[0]; in read_insn_microblaze()
|