Searched refs:get_arch_info (Results 1 – 10 of 10) sorted by relevance
/external/capstone/bindings/python/pyx/ |
D | ccapstone.pyx | 27 arm.get_arch_info(detail.arch.arm) 30 arm64.get_arch_info(detail.arch.arm64) 36 self.operands) = x86.get_arch_info(detail.arch.x86) 38 self.operands = mips.get_arch_info(detail.arch.mips) 41 ppc.get_arch_info(detail.arch.ppc) 43 (self.cc, self.hint, self.operands) = sparc.get_arch_info(detail.arch.sparc) 45 (self.cc, self.operands) = systemz.get_arch_info(detail.arch.sysz) 47 self.operands = xcore.get_arch_info(detail.arch.xcore)
|
/external/capstone/bindings/python/capstone/ |
D | __init__.py | 546 … self.writeback, self.mem_barrier, self.operands) = arm.get_arch_info(self._detail.arch.arm) 549 arm64.get_arch_info(self._detail.arch.arm64) 554 … self.avx_cc, self.avx_sae, self.avx_rm, self.operands) = x86.get_arch_info(self._detail.arch.x86) 556 self.operands = mips.get_arch_info(self._detail.arch.mips) 559 ppc.get_arch_info(self._detail.arch.ppc) 561 (self.cc, self.hint, self.operands) = sparc.get_arch_info(self._detail.arch.sparc) 563 (self.cc, self.operands) = systemz.get_arch_info(self._detail.arch.sysz) 565 (self.operands) = xcore.get_arch_info(self._detail.arch.xcore)
|
D | mips.py | 46 def get_arch_info(a): function
|
D | xcore.py | 48 def get_arch_info(a): function
|
D | systemz.py | 49 def get_arch_info(a): function
|
D | sparc.py | 49 def get_arch_info(a): function
|
D | ppc.py | 61 def get_arch_info(a): function
|
D | arm.py | 76 def get_arch_info(a): function
|
D | x86.py | 71 def get_arch_info(a): function
|
D | arm64.py | 87 def get_arch_info(a): function
|