/external/elfutils/tests/ |
D | varlocs.c | 152 const char *opname = dwarf_opcode_string (atom); in print_expr() local 153 assert (opname != NULL); in print_expr() 189 printf ("%s", opname); in print_expr() 197 printf ("%s", opname); in print_expr() 204 printf ("%s", opname); in print_expr() 215 error (EXIT_FAILURE, 0, "%s used in CFI", opname); in print_expr() 217 printf ("%s ", opname); in print_expr() 243 error (EXIT_FAILURE, 0, "%s used in CFI", opname); in print_expr() 244 printf ("%s", opname); in print_expr() 249 printf ("%s(0x%" PRIx64 ")", opname, (Dwarf_Addr) expr->number); in print_expr() [all …]
|
/external/python/cpython2/Lib/compiler/ |
D | pyassem.py | 323 opname = t[0] 324 if opname == "SET_LINENO": 327 print "\t", "%3d" % pc, opname 330 print "\t", "%3d" % pc, opname, t[1] 389 opname = inst[0] 390 if opname in self.hasjrel: 393 insts[i] = opname, offset 394 elif opname in self.hasjabs: 395 insts[i] = opname, begin[inst[1]] 400 hasjrel.add(dis.opname[i]) [all …]
|
/external/python/cpython2/Lib/ |
D | functools.py | 73 for opname, opfunc in convert[root]: 74 if opname not in roots: 75 opfunc.__name__ = opname 76 opfunc.__doc__ = getattr(int, opname).__doc__ 77 setattr(cls, opname, opfunc)
|
D | opcode.py | 23 opname = [''] * 256 variable 24 for op in range(256): opname[op] = '<%r>' % (op,) 28 opname[op] = name
|
D | dis.py | 85 print opname[op].ljust(20), 123 print opname[op].ljust(15),
|
/external/python/cpython2/Python/ |
D | makeopcodetargets.py | 25 for opname, op in opcode.opmap.items(): 26 if opname == "STOP_CODE": 28 targets[op] = "TARGET_%s" % opname.replace("+0", " ").replace("+", "_")
|
/external/python/cpython2/Lib/test/ |
D | test_richcmp.py | 98 def checkfail(self, error, opname, *args): argument 99 for op in opmap[opname]: 102 def checkequal(self, opname, a, b, expres): argument 103 for op in opmap[opname]: 118 for opname in opmap: 119 self.checkfail(ValueError, opname, a, b) 158 def checkvalue(self, opname, a, b, expres): argument 163 for op in opmap[opname]: 278 for opname in ("lt", "le", "gt", "ge"): 279 for op in opmap[opname]:
|
D | test_decorators.py | 237 opname, res = ('evalname', make_decorator) 239 opname, res = ('evalargs', str(self.index)) 242 actions.append('%s%d' % (opname, self.index))
|
/external/python/cpython2/Tools/scripts/ |
D | analyze_dxp.py | 90 result = [(op, opcode.opname[op], count) 108 result = [((op1, op2), (opcode.opname[op1], opcode.opname[op2]), count)
|
/external/libgsm/add-test/ |
D | add_test.c | 20 char * opname; variable 102 opname = s = strtek(buf, " \t("); 119 return opname; 158 opname, (long)L_op1, (long)L_op2 ); 172 opname, (long)L_op1, (long)L_op2 );
|
/external/valgrind/coregrind/m_demangle/ |
D | cplus-dem.c | 677 cplus_demangle_opname (const char *opname, char *result, int options) in cplus_demangle_opname() argument 684 len = strlen(opname); in cplus_demangle_opname() 690 if (opname[0] == '_' && opname[1] == '_' in cplus_demangle_opname() 691 && opname[2] == 'o' && opname[3] == 'p') in cplus_demangle_opname() 695 tem = opname + 4; in cplus_demangle_opname() 704 else if (opname[0] == '_' && opname[1] == '_' in cplus_demangle_opname() 705 && ISLOWER((unsigned char)opname[2]) in cplus_demangle_opname() 706 && ISLOWER((unsigned char)opname[3])) in cplus_demangle_opname() 708 if (opname[4] == '\0') in cplus_demangle_opname() 715 && memcmp (optable[i].in, opname + 2, 2) == 0) in cplus_demangle_opname() [all …]
|
D | demangle.h | 142 cplus_demangle_opname (const char *opname, char *result, int options); 145 cplus_mangle_opname (const char *opname, int options); 646 const char *opname, int args);
|
/external/python/cpython2/Doc/tools/extensions/ |
D | pyspecific.py | 212 opname, arglist = m.groups() 213 signode += addnodes.desc_name(opname, opname) 218 return opname.strip()
|
/external/ltp/utils/ffsb-6.0-rc2/ |
D | ffsb_tg.c | 124 void tg_set_op_weight(ffsb_tg_t * tg, char *opname, unsigned weight) in tg_set_op_weight() argument 126 int opnum = ops_find_op(opname); in tg_set_op_weight() 131 unsigned tg_get_op_weight(ffsb_tg_t * tg, char *opname) in tg_get_op_weight() argument 133 int opnum = ops_find_op(opname); in tg_get_op_weight()
|
D | ffsb_tg.h | 153 void tg_set_op_weight(ffsb_tg_t *tg, char *opname, unsigned weight); 154 unsigned tg_get_op_weight(ffsb_tg_t *tg, char *opname);
|
D | ffsb_op.c | 167 int ops_find_op(char *opname) in ops_find_op() argument 171 if (!strcmp(opname, ffsb_op_list[i].op_name)) in ops_find_op()
|
D | ffsb_op.h | 75 int ops_find_op(char *opname);
|
/external/mksh/src/ |
D | expr.c | 54 static const char opname[][4] = { variable 198 s = opname[(int)es->tok]; in evalerr() 636 for (i = 0; (n0 = opname[i][0]); i++) in exprtoken() 637 if (c == n0 && strncmp(cp, opname[i], in exprtoken() 654 evalerr(es, ET_LVALUE, opname[(int)op]); in assign_check() 656 evalerr(es, ET_RDONLY, opname[(int)op]); in assign_check()
|
/external/valgrind/exp-sgcheck/ |
D | pc_common.c | 143 const HChar* opname; // user-understandable text name member 191 void h_record_arith_error( Seg* seg1, Seg* seg2, HChar* opname ) in h_record_arith_error() argument 198 xe.XE.Arith.opname = opname; in h_record_arith_error() 479 xe->XE.Arith.opname ); in pc_pp_Error() 509 xe->XE.Arith.opname ); in pc_pp_Error()
|
D | pc_common.h | 45 void h_record_arith_error( Seg* seg1, Seg* seg2, HChar* opname );
|
/external/compiler-rt/lib/builtins/ |
D | atomic.c | 305 #define ATOMIC_RMW(n, lockfree, type, opname, op) \ argument 306 type __atomic_fetch_##opname##_##n(type *ptr, type val, int model) {\ 308 return __c11_atomic_fetch_##opname((_Atomic(type)*)ptr, val, model);\
|
/external/skia/third_party/lua/src/ |
D | ldebug.h | 25 const char *opname);
|
/external/syslinux/com32/lua/src/ |
D | ldebug.h | 25 const char *opname);
|
/external/valgrind/coregrind/m_debuginfo/ |
D | readdwarf.c | 2662 const HChar* opname; in dwarfexpr_to_dag() local 2707 uop = 0; bop = 0; opname = NULL; /* excessively conservative */ in dwarfexpr_to_dag() 2805 uop = Cunop_Abs; opname = "abs"; goto unop; in dwarfexpr_to_dag() 2807 uop = Cunop_Neg; opname = "neg"; goto unop; in dwarfexpr_to_dag() 2809 uop = Cunop_Not; opname = "not"; goto unop; in dwarfexpr_to_dag() 2814 VG_(printf)("DW_OP_%s", opname); in dwarfexpr_to_dag() 2818 bop = Cbinop_Sub; opname = "minus"; goto binop; in dwarfexpr_to_dag() 2820 bop = Cbinop_Add; opname = "plus"; goto binop; in dwarfexpr_to_dag() 2822 bop = Cbinop_And; opname = "and"; goto binop; in dwarfexpr_to_dag() 2824 bop = Cbinop_Mul; opname = "mul"; goto binop; in dwarfexpr_to_dag() [all …]
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_blorp.c | 1034 const char *opname = NULL; in intel_hiz_exec() local 1038 opname = "depth resolve"; in intel_hiz_exec() 1041 opname = "hiz ambiguate"; in intel_hiz_exec() 1044 opname = "depth clear"; in intel_hiz_exec() 1047 opname = "noop?"; in intel_hiz_exec() 1052 __func__, opname, mt, level, layer); in intel_hiz_exec()
|