Searched refs:X86_OP_IMM (Results 1 – 17 of 17) sorted by relevance
/external/capstone/bindings/vb6/ |
D | CX86Operand.cls | 102 ElseIf optype = X86_OP_IMM Then 122 If optype = X86_OP_IMM Then opStr = "X86_OP_IMM" 173 ElseIf optype = X86_OP_IMM Then
|
D | mx86.bas | 253 X86_OP_IMM 'CS_OP_IMM (Immediate operand).
|
/external/capstone/cstool/ |
D | cstool_x86.c | 237 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/ |
D | test_x86.py | 195 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/ |
D | x86_detail.c | 243 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/ |
D | TestX86.java | 106 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/ |
D | test_x86.c | 253 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/ |
D | x86.ml | 18 | X86_OP_IMM of int Constructor
|
D | test_x86.ml | 34 | X86_OP_IMM imm -> printf "\t\top[%d]: IMM = 0x%x [sz=%d]\n" i imm op.size;
|
D | ocaml.c | 375 case X86_OP_IMM: in _cs_disasm()
|
/external/capstone/bindings/java/capstone/ |
D | X86.java | 65 if (type == X86_OP_IMM) in read()
|
D | X86_const.java | 331 public static final int X86_OP_IMM = 2; field in X86_const
|
/external/capstone/arch/X86/ |
D | X86ATTInstPrinter.c | 584 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()
|
D | X86IntelInstPrinter.c | 722 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()
|
D | X86Mapping.c | 3415 MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].type = X86_OP_IMM; in op_addImm()
|
/external/capstone/include/capstone/ |
D | x86.h | 14 #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/ |
D | x86_const.py | 328 X86_OP_IMM = 2 variable
|