Home | History | Annotate | Download | only in Disassembler

Lines Matching defs:Bytes

234   /// readInstruction - read four bytes from the MemoryObject
241 uint8_t Bytes[4];
243 // We want to read exactly 4 Bytes of data.
244 if (region.readBytes(address, 4, Bytes) == -1) {
251 insn = (Bytes[3] << 0) |
252 (Bytes[2] << 8) |
253 (Bytes[1] << 16) |
254 (Bytes[0] << 24);
258 insn = (Bytes[0] << 0) |
259 (Bytes[1] << 8) |
260 (Bytes[2] << 16) |
261 (Bytes[3] << 24);