Lines Matching defs:Bytes
38 ArrayRef<uint8_t> Bytes, uint64_t Address,
270 static DecodeStatus readInstruction32(ArrayRef<uint8_t> Bytes, uint64_t Address,
273 // We want to read exactly 4 Bytes of data.
274 if (Bytes.size() < 4) {
280 ? (Bytes[0] << 0) | (Bytes[1] << 8) | (Bytes[2] << 16) |
281 (Bytes[3] << 24)
282 : (Bytes[3] << 0) | (Bytes[2] << 8) | (Bytes[1] << 16) |
283 (Bytes[0] << 24);
289 ArrayRef<uint8_t> Bytes,
295 readInstruction32(Bytes, Address, Size, Insn, isLittleEndian);