Home | History | Annotate | Download | only in MCDisassembler

Lines Matching defs:Bytes

127   uint8_t *Bytes;
131 DisasmMemoryObject(uint8_t *bytes, uint64_t size, uint64_t basePC) :
132 Bytes(bytes), Size(size), BasePC(basePC) {}
140 *Byte = Bytes[Addr - BasePC];
148 // disassembler context specified in the parameter DC. The bytes of the
149 // instruction are specified in the parameter Bytes, and contains at least
150 // BytesSize number of bytes. The instruction is at the address specified by
153 // parameter OutStringSize. This function returns the number of bytes in the
155 // returns zero the caller will have to pick how many bytes they want to step
158 size_t LLVMDisasmInstruction(LLVMDisasmContextRef DCR, uint8_t *Bytes,
162 // Wrap the pointer to the Bytes, BytesSize and PC in a MemoryObject.
163 DisasmMemoryObject MemoryObject(Bytes, BytesSize, PC);