Searched refs:disasm_lite (Results 1 – 7 of 7) sorted by relevance
/external/capstone/bindings/python/ |
D | BUILDING.txt | 62 Similarly to test_basic.py, but this code shows how to use disasm_lite(), a lighter 66 The main reason for using this API is better performance: disasm_lite() is at least 68 information out of disassembler, use disasm_lite() instead of disasm().
|
D | test_lite.py | 65 for (addr, size, mnemonic, op_str) in md.disasm_lite(code, 0x1000):
|
/external/capstone/suite/ |
D | fuzz.py | 73 insns = md.disasm_lite(code, 0)
|
D | benchmark.py | 66 insns = md.disasm_lite(code, 0)
|
/external/capstone/bindings/python/pyx/ |
D | ccapstone.pyx | 291 # unlike disasm(), disasm_lite() only return tuples of (address, size, mnemonic, op_str), 293 def disasm_lite(self, code, addr, count=0): member in Cs
|
/external/capstone/bindings/python/capstone/ |
D | __init__.py | 868 def disasm_lite(self, code, offset, count=0): member in Cs
|
/external/capstone/ |
D | ChangeLog | 458 - New API disasm_lite() added to Cs class. This light API only returns tuples of
|