Home
last modified time | relevance | path

Searched refs:op_str (Results 1 – 25 of 92) sorted by relevance

1234

/external/ltp/lib/
Dtst_epoll.c39 const char *op_str; in safe_epoll_ctl() local
44 op_str = "EPOLL_CTL_ADD"; in safe_epoll_ctl()
47 op_str = "EPOLL_CTL_DEL"; in safe_epoll_ctl()
50 op_str = "EPOLL_CTL_MOD"; in safe_epoll_ctl()
53 op_str = "???"; in safe_epoll_ctl()
61 "epoll_ctl(%d, %s, %d, ...", epfd, op_str, fd); in safe_epoll_ctl()
/external/capstone/bindings/python/
Dtest_lite.py68 for (addr, size, mnemonic, op_str) in cs_disasm_lite(arch, mode, code, 0x1000):
69 print("0x%x:\t%s\t%s" % (addr, mnemonic, op_str))
87 for (addr, size, mnemonic, op_str) in md.disasm_lite(code, 0x1000):
88 print("0x%x:\t%s\t%s" % (addr, mnemonic, op_str))
Dtest_basic.py75 print("0x%x:\t%s\t%s" % (insn.address, insn.mnemonic, insn.op_str))
96 print("0x%x:\t%s\t%s" % (insn.address, insn.mnemonic, insn.op_str))
Dtest_evm.py12 print("0x%x:\t%s\t%s" %(i.address, i.mnemonic, i.op_str))
Dtest_customized_mnem.py18 print("\t%s\t%s\n" % (insn.mnemonic, insn.op_str))
Dtest_skipdata.py64 print("0x%x:\t%s\t%s" % (insn.address, insn.mnemonic, insn.op_str))
Dtest_mos65xx.py31 print("0x%x:\t%s\t%s" % (insn.address, insn.mnemonic, insn.op_str))
Dtest_xcore.py20 print("0x%x:\t%s\t%s" % (insn.address, insn.mnemonic, insn.op_str))
/external/capstone/suite/cstest/src/
Dcapstone_test.c156 if (strlen(insn[0].op_str) > 0) { in test_single_MC()
158 strcpy(tmp + strlen(insn[0].mnemonic) + 1, insn[0].op_str); in test_single_MC()
169 if (strlen(insn[0].op_str) > 0) { in test_single_MC()
171 strcpy(tmp_noreg + strlen(insn[0].mnemonic) + 1, insn[0].op_str); in test_single_MC()
310 tmp = (char *)malloc(strlen(insn[i].mnemonic) + strlen(insn[i].op_str) + 100); in test_single_issue()
312 if (strlen(insn[i].op_str) > 0) { in test_single_issue()
314 strcpy(tmp + strlen(insn[i].mnemonic) + 1, insn[i].op_str); in test_single_issue()
/external/capstone/bindings/vb6/
DCInstruction.cls120 For i = 0 To UBound(inst.op_str)
121 If inst.op_str(i) = 0 Then Exit For
122 operand = operand & Chr(inst.op_str(i))
/external/minijail/
Dsyscall_filter.c35 int str_to_op(const char *op_str) in str_to_op() argument
37 if (streq(op_str, "==")) { in str_to_op()
39 } else if (streq(op_str, "!=")) { in str_to_op()
41 } else if (streq(op_str, "<")) { in str_to_op()
43 } else if (streq(op_str, "<=")) { in str_to_op()
45 } else if (streq(op_str, ">")) { in str_to_op()
47 } else if (streq(op_str, ">=")) { in str_to_op()
49 } else if (streq(op_str, "&")) { in str_to_op()
51 } else if (streq(op_str, "in")) { in str_to_op()
/external/capstone/suite/
Dppcbranch.py47 for (addr, size, mnemonic, op_str) in cs_disasm_lite(arch, mode, code, 0x1000):
48 print("0x%x:\t%s\t%s" % (addr, mnemonic, op_str))
Ddisasm_mc.py133 if x[0].op_str != '':
134 cs_output = "%s %s" %(x[0].mnemonic, x[0].op_str)
Dtest_mc.py181 if x[0].op_str != '':
182 cs_output = "%s %s" %(x[0].mnemonic, x[0].op_str)
/external/capstone/
Dcs.c613 strncpy(insn->op_str, sp, sizeof(insn->op_str) - 1); in fill_insn()
614 insn->op_str[sizeof(insn->op_str) - 1] = '\0'; in fill_insn()
616 insn->op_str[0] = '\0'; in fill_insn()
794 size_t available = sizeof(((cs_insn*)NULL)->op_str); in skipdata_opstr()
894 mci.flat_insn->op_str[0] = '\0'; in cs_disasm()
949 insn_cache->op_str[0] = '\0'; in cs_disasm()
953 skipdata_opstr(insn_cache->op_str, buffer, skipdata_bytes); in cs_disasm()
1107 mci.flat_insn->op_str[0] = '\0'; in cs_disasm_iter()
1158 insn->op_str[0] = '\0'; in cs_disasm_iter()
1163 skipdata_opstr(insn->op_str, *code, skipdata_bytes); in cs_disasm_iter()
/external/capstone/bindings/python/pyx/
Dccapstone.pyx97 # Diet engine cannot provide @mnemonic & @op_str
104 def op_str(self): member in CsInsn
106 # Diet engine cannot provide @mnemonic & @op_str
109 return self._raw.op_str
314 # unlike disasm(), disasm_lite() only return tuples of (address, size, mnemonic, op_str),
321 # Diet engine cannot provide @mnemonic & @op_str
329 yield (insn.address, insn.size, insn.mnemonic, insn.op_str)
/external/capstone/bindings/ocaml/
Dcapstone.ml124 op_str: string; RecordField
176 let (id, address, size, bytes, mnemonic, op_str, regs_read,
178 (a.id, a.address, a.size, a.bytes, a.mnemonic, a.op_str,
186 method op_str = op_str; method
/external/selinux/libsepol/cil/src/
Dcil_write_ast.c85 const char *op_str; in write_expr() local
89 op_str = CIL_KEY_AND; in write_expr()
92 op_str = CIL_KEY_OR; in write_expr()
95 op_str = CIL_KEY_NOT; in write_expr()
98 op_str = CIL_KEY_ALL; in write_expr()
101 op_str = CIL_KEY_EQ; in write_expr()
104 op_str = CIL_KEY_NEQ; in write_expr()
107 op_str = CIL_KEY_XOR; in write_expr()
110 op_str = CIL_KEY_RANGE; in write_expr()
113 op_str = CIL_KEY_CONS_DOM; in write_expr()
[all …]
/external/tensorflow/tensorflow/python/data/benchmarks/
Dbatch_benchmark.py91 op_str = ("batch" if num_parallel_calls is None else
105 name="batch_size_%d_%s" % (batch_size, op_str))
/external/capstone/bindings/java/capstone/
DCapstone.java53 public byte[] op_str; field in Capstone._cs_insn
60 op_str = new byte[160]; in _cs_insn()
62 java.util.Arrays.fill(op_str, (byte) 0); in _cs_insn()
133 while (insn.op_str[lo++] != 0); in CsInsn()
135 opStr = new String(insn.op_str, 0, lo-1); in CsInsn()
/external/capstone/tests/
Dtest_skipdata.c137 insn[j].address, insn[j].mnemonic, insn[j].op_str); in test()
173 printf("@op_str: %lu\n", offsetof(cs_insn, op_str)); in main()
Dtest_customized_mnem.c35 printf("\t%s\t%s\n", insn[0].mnemonic, insn[0].op_str); in print_insn()
/external/igt-gpu-tools/tests/
Dkms_psr.c44 static const char *op_str(enum operations op) in op_str() function
475 op_str(op)) {
487 op_str(op)) {
497 op_str(op)) {
Dkms_psr2_su.c54 static const char *op_str(enum operations op) in op_str() function
276 igt_subtest_f("%s", op_str(data.op)) {
/external/capstone/contrib/cs_driver/cs_driver/
Dcs_driver.c78 insn[j].mnemonic, insn[j].op_str); in cs_driver_hello()

1234