Lines Matching refs:Bytes
69 ArrayRef<uint8_t> Bytes, uint64_t Address,
140 static DecodeStatus readInstruction64(ArrayRef<uint8_t> Bytes, uint64_t Address, in readInstruction64() argument
145 if (Bytes.size() < 8) { in readInstruction64()
152 Hi = (Bytes[0] << 24) | (Bytes[1] << 16) | (Bytes[2] << 0) | (Bytes[3] << 8); in readInstruction64()
153 Lo = (Bytes[4] << 0) | (Bytes[5] << 8) | (Bytes[6] << 16) | (Bytes[7] << 24); in readInstruction64()
155 Hi = (Bytes[0] << 24) | ((Bytes[1] & 0x0F) << 20) | ((Bytes[1] & 0xF0) << 12) | in readInstruction64()
156 (Bytes[2] << 8) | (Bytes[3] << 0); in readInstruction64()
157 Lo = (Bytes[4] << 24) | (Bytes[5] << 16) | (Bytes[6] << 8) | (Bytes[7] << 0); in readInstruction64()
165 ArrayRef<uint8_t> Bytes, in getInstruction() argument
172 Result = readInstruction64(Bytes, Address, Size, Insn, IsLittleEndian); in getInstruction()
192 if (Bytes.size() < 16) { in getInstruction()
198 Hi = (Bytes[12] << 0) | (Bytes[13] << 8) | (Bytes[14] << 16) | (Bytes[15] << 24); in getInstruction()
200 Hi = (Bytes[12] << 24) | (Bytes[13] << 16) | (Bytes[14] << 8) | (Bytes[15] << 0); in getInstruction()