Home
last modified time | relevance | path

Searched refs:X86_OP_IMM (Results 1 – 17 of 17) sorted by relevance

/external/capstone/bindings/vb6/
DCX86Operand.cls102 ElseIf optype = X86_OP_IMM Then
122 If optype = X86_OP_IMM Then opStr = "X86_OP_IMM"
173 ElseIf optype = X86_OP_IMM Then
Dmx86.bas253 X86_OP_IMM 'CS_OP_IMM (Immediate operand).
/external/capstone/cstool/
Dcstool_x86.c237 count = cs_op_count(ud, ins, X86_OP_IMM); in print_insn_detail_x86()
241 int index = cs_op_index(ud, ins, X86_OP_IMM, i); in print_insn_detail_x86()
257 case X86_OP_IMM: in print_insn_detail_x86()
/external/capstone/bindings/python/
Dtest_x86.py195 count = insn.op_count(X86_OP_IMM)
199 op = insn.op_find(X86_OP_IMM, i + 1)
213 if i.type == X86_OP_IMM:
/external/capstone/suite/cstest/src/
Dx86_detail.c243 count = cs_op_count(*ud, ins, X86_OP_IMM); in get_detail_x86()
247 int index = cs_op_index(*ud, ins, X86_OP_IMM, i); in get_detail_x86()
262 case X86_OP_IMM: in get_detail_x86()
/external/capstone/bindings/java/
DTestX86.java106 int count = ins.opCount(X86_OP_IMM); in print_ins_detail()
112 int index = ins.opIndex(X86_OP_IMM, i + 1); in print_ins_detail()
124 if (i.type == X86_OP_IMM) in print_ins_detail()
/external/capstone/tests/
Dtest_x86.c253 count = cs_op_count(ud, ins, X86_OP_IMM); in print_insn_detail()
257 int index = cs_op_index(ud, ins, X86_OP_IMM, i); in print_insn_detail()
280 case X86_OP_IMM: in print_insn_detail()
/external/capstone/bindings/ocaml/
Dx86.ml18 | X86_OP_IMM of int Constructor
Dtest_x86.ml34 | X86_OP_IMM imm -> printf "\t\top[%d]: IMM = 0x%x [sz=%d]\n" i imm op.size;
Docaml.c375 case X86_OP_IMM: in _cs_disasm()
/external/capstone/bindings/java/capstone/
DX86.java65 if (type == X86_OP_IMM) in read()
DX86_const.java331 public static final int X86_OP_IMM = 2; field in X86_const
/external/capstone/arch/X86/
DX86ATTInstPrinter.c584 MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].type = X86_OP_IMM; in printU8Imm()
653 MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].type = X86_OP_IMM; in printPCRelImm()
785 MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].type = X86_OP_IMM; in printOperand()
970 if (MI->flat_insn->detail->x86.operands[i].type == X86_OP_IMM) in X86_ATT_printInst()
1053 MI->flat_insn->detail->x86.operands[0].type = X86_OP_IMM; in X86_ATT_printInst()
DX86IntelInstPrinter.c722 MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].type = X86_OP_IMM; in printU8Imm()
868 MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].type = X86_OP_IMM; in printPCRelImm()
991 MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].type = X86_OP_IMM; in printOperand()
DX86Mapping.c3415 MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].type = X86_OP_IMM; in op_addImm()
/external/capstone/include/capstone/
Dx86.h14 #define X86_REL_ADDR(insn) (((insn).detail->x86.operands[0].type == X86_OP_IMM) \
161 X86_OP_IMM, ///< = CS_OP_IMM (Immediate operand). enumerator
/external/capstone/bindings/python/capstone/
Dx86_const.py328 X86_OP_IMM = 2 variable