Lines Matching full:bytes
69 ArrayRef<uint8_t> Bytes, uint64_t Address,
141 static DecodeStatus readInstruction64(ArrayRef<uint8_t> Bytes, uint64_t Address,
146 if (Bytes.size() < 8) {
153 Hi = (Bytes[0] << 24) | (Bytes[1] << 16) | (Bytes[2] << 0) | (Bytes[3] << 8);
154 Lo = (Bytes[4] << 0) | (Bytes[5] << 8) | (Bytes[6] << 16) | (Bytes[7] << 24);
156 Hi = (Bytes[0] << 24) | ((Bytes[1] & 0x0F) << 20) | ((Bytes[1] & 0xF0) << 12) |
157 (Bytes[2] << 8) | (Bytes[3] << 0);
158 Lo = (Bytes[4] << 24) | (Bytes[5] << 16) | (Bytes[6] << 8) | (Bytes[7] << 0);
166 ArrayRef<uint8_t> Bytes,
173 Result = readInstruction64(Bytes, Address, Size, Insn, IsLittleEndian);
193 if (Bytes.size() < 16) {
199 Hi = (Bytes[12] << 0) | (Bytes[13] << 8) | (Bytes[14] << 16) | (Bytes[15] << 24);
201 Hi = (Bytes[12] << 24) | (Bytes[13] << 16) | (Bytes[14] << 8) | (Bytes[15] << 0);