Home
last modified time | relevance | path

Searched refs:PPC_OP_IMM (Results 1 – 13 of 13) sorted by relevance

/external/capstone/arch/PowerPC/
DPPCInstPrinter.c134 ppc->operands[ppc->op_count].type = PPC_OP_IMM; in PPC_printInst()
379 MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM; in printU2ImmOperand()
396 MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM; in printU4ImmOperand()
410 MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM; in printS5ImmOperand()
423 MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM; in printU5ImmOperand()
436 MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM; in printU6ImmOperand()
454 MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM; in printU12ImmOperand()
470 MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM; in printS16ImmOperand()
499 MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM; in printS16ImmOperand_Mem()
518 MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM; in printU16ImmOperand()
[all …]
/external/capstone/bindings/ocaml/
Dppc.ml20 | PPC_OP_IMM of int Constructor
Dtest_ppc.ml27 | PPC_OP_IMM imm -> printf "\t\top[%d]: IMM = 0x%x\n" i imm;
Docaml.c432 case PPC_OP_IMM: in _cs_disasm()
/external/capstone/cstool/
Dcstool_ppc.c60 case PPC_OP_IMM: in print_insn_detail_ppc()
/external/capstone/bindings/java/capstone/
DPpc.java54 if (type == PPC_OP_IMM || type == PPC_OP_REG) in read()
DPpc_const.java24 public static final int PPC_OP_IMM = 2; field in Ppc_const
/external/capstone/suite/cstest/src/
Dppc_detail.c60 case PPC_OP_IMM: in get_detail_ppc()
/external/capstone/bindings/python/
Dtest_ppc.py32 if i.type == PPC_OP_IMM:
/external/capstone/tests/
Dtest_ppc.c81 case PPC_OP_IMM: in print_insn_detail()
/external/capstone/bindings/java/
DTestPpc.java45 if (i.type == PPC_OP_IMM) in print_ins_detail()
/external/capstone/include/capstone/
Dppc.h45 PPC_OP_IMM, ///< = CS_OP_IMM (Immediate operand). enumerator
/external/capstone/bindings/python/capstone/
Dppc_const.py21 PPC_OP_IMM = 2 variable