Lines Matching refs:Bytes

34                                ArrayRef<uint8_t> Bytes, uint64_t Address,
38 ArrayRef<uint8_t> Bytes, uint64_t Address,
42 ArrayRef<uint8_t> Bytes, uint64_t Address,
50 ArrayRef<uint8_t> Bytes, uint64_t Address,
230 ArrayRef<uint8_t> Bytes, in getInstructionI() argument
233 uint64_t Insn = support::endian::read16le(Bytes.data()); in getInstructionI()
247 if (Bytes.size() < (Words + 1) * 2) { in getInstructionI()
251 Insn |= (uint64_t)support::endian::read16le(Bytes.data() + 2) << 16; in getInstructionI()
261 if (Bytes.size() < (Words + 1) * 2) { in getInstructionI()
265 Insn |= (uint64_t)support::endian::read16le(Bytes.data() + Words * 2) in getInstructionI()
285 ArrayRef<uint8_t> Bytes, in getInstructionII() argument
288 uint64_t Insn = support::endian::read16le(Bytes.data()); in getInstructionII()
301 if (Bytes.size() < (Words + 1) * 2) { in getInstructionII()
305 Insn |= (uint64_t)support::endian::read16le(Bytes.data() + 2) << 16; in getInstructionII()
340 ArrayRef<uint8_t> Bytes, in getInstructionCJ() argument
343 uint64_t Insn = support::endian::read16le(Bytes.data()); in getInstructionCJ()
361 ArrayRef<uint8_t> Bytes, in getInstruction() argument
364 if (Bytes.size() < 2) { in getInstruction()
369 uint64_t Insn = support::endian::read16le(Bytes.data()); in getInstruction()
373 return getInstructionII(MI, Size, Bytes, Address, CStream); in getInstruction()
375 return getInstructionCJ(MI, Size, Bytes, Address, CStream); in getInstruction()
377 return getInstructionI(MI, Size, Bytes, Address, CStream); in getInstruction()