Home | History | Annotate | Download | only in opcodes

Lines Matching defs:ibytes

95   unsigned char ibytes[4];
104 status = info->read_memory_func (memaddr, ibytes, 2, info);
113 inst = (ibytes[0] << 8) | ibytes[1];
115 inst = (ibytes[1] << 8) | ibytes[0];
237 status = info->read_memory_func (val, ibytes, 4, info);
245 val = (((unsigned) ibytes[3] << 24) | (ibytes[2] << 16)
246 | (ibytes[1] << 8) | (ibytes[0]));
248 val = (((unsigned) ibytes[0] << 24) | (ibytes[1] << 16)
249 | (ibytes[2] << 8) | (ibytes[3]));
270 status = info->read_memory_func (val, ibytes, 4, info);
278 val = (((unsigned) ibytes[3] << 24) | (ibytes[2] << 16)
279 | (ibytes[1] << 8) | (ibytes[0]));
281 val = (((unsigned) ibytes[0] << 24) | (ibytes[1] << 16)
282 | (ibytes[2] << 8) | (ibytes[3]));