Home
last modified time | relevance | path

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

/external/capstone/cstool/
Dcstool_x86.c63 count = cs_op_count(ud, ins, X86_OP_IMM); in print_insn_detail_x86()
67 int index = cs_op_index(ud, ins, X86_OP_IMM, i); in print_insn_detail_x86()
81 case X86_OP_IMM: in print_insn_detail_x86()
/external/capstone/bindings/python/
Dtest_x86.py82 count = insn.op_count(X86_OP_IMM)
86 op = insn.op_find(X86_OP_IMM, i + 1)
96 if i.type == X86_OP_IMM:
/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/tests/
Dtest_x86.c86 count = cs_op_count(ud, ins, X86_OP_IMM); in print_insn_detail()
90 int index = cs_op_index(ud, ins, X86_OP_IMM, i); in print_insn_detail()
104 case X86_OP_IMM: in print_insn_detail()
/external/capstone/bindings/java/
DTestX86.java85 int count = ins.opCount(X86_OP_IMM); in print_ins_detail()
89 int index = ins.opIndex(X86_OP_IMM, i + 1); in print_ins_detail()
101 if (i.type == X86_OP_IMM) in print_ins_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\n" i imm;
Docaml.c370 case X86_OP_IMM: in _cs_disasm()
/external/capstone/bindings/java/capstone/
DX86.java54 if (type == X86_OP_IMM) in read()
DX86_const.java248 public static final int X86_OP_IMM = 2; field in X86_const
/external/capstone/arch/X86/
DX86ATTInstPrinter.c486 MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].type = X86_OP_IMM; in printPCRelImm()
655 MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].type = X86_OP_IMM; in printOperand()
817 if (MI->flat_insn->detail->x86.operands[i].type == X86_OP_IMM) in X86_ATT_printInst()
898 MI->flat_insn->detail->x86.operands[0].type = X86_OP_IMM; in X86_ATT_printInst()
DX86IntelInstPrinter.c573 MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].type = X86_OP_IMM; in printPCRelImm()
744 MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].type = X86_OP_IMM; in printOperand()
DX86Mapping.c47883 MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].type = X86_OP_IMM; in op_addImm()
/external/capstone/include/
Dx86.h16 #define X86_REL_ADDR(insn) (((insn).detail->x86.operands[0].type == X86_OP_IMM) \
78 X86_OP_IMM, // = CS_OP_IMM (Immediate operand). enumerator
/external/capstone/bindings/python/capstone/
Dx86_const.py245 X86_OP_IMM = 2 variable