Home
last modified time | relevance | path

Searched refs:opname (Results 1 – 25 of 34) sorted by relevance

12

/external/elfutils/tests/
Dvarlocs.c152 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/
Dpyassem.py323 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/
Dfunctools.py73 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)
Dopcode.py23 opname = [''] * 256 variable
24 for op in range(256): opname[op] = '<%r>' % (op,)
28 opname[op] = name
Ddis.py85 print opname[op].ljust(20),
123 print opname[op].ljust(15),
/external/python/cpython2/Python/
Dmakeopcodetargets.py25 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/
Dtest_richcmp.py98 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]:
Dtest_decorators.py237 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/
Danalyze_dxp.py90 result = [(op, opcode.opname[op], count)
108 result = [((op1, op2), (opcode.opname[op1], opcode.opname[op2]), count)
/external/libgsm/add-test/
Dadd_test.c20 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/
Dcplus-dem.c677 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 …]
Ddemangle.h142 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/
Dpyspecific.py212 opname, arglist = m.groups()
213 signode += addnodes.desc_name(opname, opname)
218 return opname.strip()
/external/ltp/utils/ffsb-6.0-rc2/
Dffsb_tg.c124 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()
Dffsb_tg.h153 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);
Dffsb_op.c167 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()
Dffsb_op.h75 int ops_find_op(char *opname);
/external/mksh/src/
Dexpr.c54 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/
Dpc_common.c143 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()
Dpc_common.h45 void h_record_arith_error( Seg* seg1, Seg* seg2, HChar* opname );
/external/compiler-rt/lib/builtins/
Datomic.c305 #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/
Dldebug.h25 const char *opname);
/external/syslinux/com32/lua/src/
Dldebug.h25 const char *opname);
/external/valgrind/coregrind/m_debuginfo/
Dreaddwarf.c2662 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/
Dbrw_blorp.c1034 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()

12