/external/ltp/lib/ |
D | tst_epoll.c | 39 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/ |
D | test_lite.py | 68 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))
|
D | test_basic.py | 75 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))
|
D | test_evm.py | 12 print("0x%x:\t%s\t%s" %(i.address, i.mnemonic, i.op_str))
|
D | test_customized_mnem.py | 18 print("\t%s\t%s\n" % (insn.mnemonic, insn.op_str))
|
D | test_skipdata.py | 64 print("0x%x:\t%s\t%s" % (insn.address, insn.mnemonic, insn.op_str))
|
D | test_mos65xx.py | 31 print("0x%x:\t%s\t%s" % (insn.address, insn.mnemonic, insn.op_str))
|
D | test_xcore.py | 20 print("0x%x:\t%s\t%s" % (insn.address, insn.mnemonic, insn.op_str))
|
/external/capstone/suite/cstest/src/ |
D | capstone_test.c | 156 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/ |
D | CInstruction.cls | 120 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/ |
D | syscall_filter.c | 35 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/ |
D | ppcbranch.py | 47 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))
|
D | disasm_mc.py | 133 if x[0].op_str != '': 134 cs_output = "%s %s" %(x[0].mnemonic, x[0].op_str)
|
D | test_mc.py | 181 if x[0].op_str != '': 182 cs_output = "%s %s" %(x[0].mnemonic, x[0].op_str)
|
/external/capstone/ |
D | cs.c | 613 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/ |
D | ccapstone.pyx | 97 # 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/ |
D | capstone.ml | 124 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/ |
D | cil_write_ast.c | 85 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/ |
D | batch_benchmark.py | 91 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/ |
D | Capstone.java | 53 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/ |
D | test_skipdata.c | 137 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()
|
D | test_customized_mnem.c | 35 printf("\t%s\t%s\n", insn[0].mnemonic, insn[0].op_str); in print_insn()
|
/external/igt-gpu-tools/tests/ |
D | kms_psr.c | 44 static const char *op_str(enum operations op) in op_str() function 475 op_str(op)) { 487 op_str(op)) { 497 op_str(op)) {
|
D | kms_psr2_su.c | 54 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/ |
D | cs_driver.c | 78 insn[j].mnemonic, insn[j].op_str); in cs_driver_hello()
|