Lines Matching defs:bytes
398 uint8_t bytes[4];
400 // We want to read exactly 4 bytes of data.
401 if (Region.readBytes(Address, 4, (uint8_t*)bytes, NULL) == -1)
405 insn = (bytes[3] << 24) |
406 (bytes[2] << 16) |
407 (bytes[1] << 8) |
408 (bytes[0] << 0);
460 // Read 2 bytes of data first.
461 uint8_t bytes[2];
462 if (Region.readBytes(Address, 2, (uint8_t*)bytes, NULL) == -1)
466 insn = (bytes[1] << 8) | bytes[0];
474 if (Region.readBytes(Address + 2, 2, (uint8_t*)bytes, NULL) == -1)
477 insn1 = (bytes[1] << 8) | bytes[0];