Lines Matching defs:bytes
424 uint8_t bytes[4];
429 // We want to read exactly 4 bytes of data.
430 if (Region.readBytes(Address, 4, bytes) == -1) {
436 uint32_t insn = (bytes[3] << 24) |
437 (bytes[2] << 16) |
438 (bytes[1] << 8) |
439 (bytes[0] << 0);
684 uint8_t bytes[4];
689 // We want to read exactly 2 bytes of data.
690 if (Region.readBytes(Address, 2, bytes) == -1) {
695 uint16_t insn16 = (bytes[1] << 8) | bytes[0];
741 // We want to read exactly 4 bytes of data.
742 if (Region.readBytes(Address, 4, bytes) == -1) {
747 uint32_t insn32 = (bytes[3] << 8) |
748 (bytes[2] << 0) |
749 (bytes[1] << 24) |
750 (bytes[0] << 16);