Lines Matching full:bytes
113 uint8_t *Bytes;
117 DisasmMemoryObject(uint8_t *bytes, uint64_t size, uint64_t basePC) :
118 Bytes(bytes), Size(size), BasePC(basePC) {}
126 *Byte = Bytes[Addr - BasePC];
134 // disassembler context specified in the parameter DC. The bytes of the
135 // instruction are specified in the parameter Bytes, and contains at least
136 // BytesSize number of bytes. The instruction is at the address specified by
139 // parameter OutStringSize. This function returns the number of bytes in the
141 // returns zero the caller will have to pick how many bytes they want to step
144 size_t LLVMDisasmInstruction(LLVMDisasmContextRef DCR, uint8_t *Bytes,
148 // Wrap the pointer to the Bytes, BytesSize and PC in a MemoryObject.
149 DisasmMemoryObject MemoryObject(Bytes, BytesSize, PC);