/external/elfutils/src/tests/ |
D | varlocs.c | 154 const char *opname = dwarf_opcode_string (atom); in print_expr() local 155 assert (opname != NULL); in print_expr() 191 printf ("%s", opname); in print_expr() 199 printf ("%s", opname); in print_expr() 206 printf ("%s", opname); in print_expr() 217 error (EXIT_FAILURE, 0, "%s used in CFI", opname); in print_expr() 219 printf ("%s ", opname); in print_expr() 245 error (EXIT_FAILURE, 0, "%s used in CFI", opname); in print_expr() 246 printf ("%s", opname); in print_expr() 251 printf ("%s(0x%" PRIx64 ")", opname, (Dwarf_Addr) expr->number); in print_expr() [all …]
|
/external/v8/test/preparser/ |
D | strict-identifiers.pyt | 121 assign_var = StrictTemplate("assign-$id-$opname", """ 125 prefix_var = StrictTemplate("prefix-$opname-$id", """ 129 postfix_var = StrictTemplate("postfix-$opname-$id", """ 225 assign_var({"id": id, "op":op, "opname": assign_ops[op]}, 229 prefix_var({"id": id, "op":"++", "opname":"inc"}, "strict_lhs_prefix") 230 prefix_var({"id": id, "op":"--", "opname":"dec"}, "strict_lhs_prefix") 231 postfix_var({"id": id, "op":"++", "opname":"inc"}, "strict_lhs_postfix") 232 postfix_var({"id": id, "op":"--", "opname":"dec"}, "strict_lhs_postfix") 260 assign_var({"id":reserved_word, "op":op, "opname": assign_ops[op]}, message) 263 prefix_var({"id":reserved_word, "op":"++", "opname":"inc"}, message) [all …]
|
/external/valgrind/coregrind/m_demangle/ |
D | cplus-dem.c | 649 cplus_demangle_opname (const char *opname, char *result, int options) in cplus_demangle_opname() argument 656 len = strlen(opname); in cplus_demangle_opname() 662 if (opname[0] == '_' && opname[1] == '_' in cplus_demangle_opname() 663 && opname[2] == 'o' && opname[3] == 'p') in cplus_demangle_opname() 667 tem = opname + 4; in cplus_demangle_opname() 676 else if (opname[0] == '_' && opname[1] == '_' in cplus_demangle_opname() 677 && ISLOWER((unsigned char)opname[2]) in cplus_demangle_opname() 678 && ISLOWER((unsigned char)opname[3])) in cplus_demangle_opname() 680 if (opname[4] == '\0') in cplus_demangle_opname() 687 && memcmp (optable[i].in, opname + 2, 2) == 0) in cplus_demangle_opname() [all …]
|
D | demangle.h | 135 cplus_demangle_opname (const char *opname, char *result, int options); 138 cplus_mangle_opname (const char *opname, int options); 602 const char *opname, int args);
|
/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/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/valgrind/coregrind/m_debuginfo/ |
D | readdwarf.c | 2746 const HChar* opname; in dwarfexpr_to_dag() local 2791 uop = 0; bop = 0; opname = NULL; /* excessively conservative */ in dwarfexpr_to_dag() 2889 uop = Cunop_Abs; opname = "abs"; goto unop; in dwarfexpr_to_dag() 2891 uop = Cunop_Neg; opname = "neg"; goto unop; in dwarfexpr_to_dag() 2893 uop = Cunop_Not; opname = "not"; goto unop; in dwarfexpr_to_dag() 2898 VG_(printf)("DW_OP_%s", opname); in dwarfexpr_to_dag() 2902 bop = Cbinop_Sub; opname = "minus"; goto binop; in dwarfexpr_to_dag() 2904 bop = Cbinop_Add; opname = "plus"; goto binop; in dwarfexpr_to_dag() 2906 bop = Cbinop_And; opname = "and"; goto binop; in dwarfexpr_to_dag() 2908 bop = Cbinop_Mul; opname = "mul"; goto binop; in dwarfexpr_to_dag() [all …]
|
/external/valgrind/VEX/priv/ |
D | guest_amd64_toIR.c | 7188 const HChar* opname, IROp op ) in dis_MMX_shiftG_byE() argument 7202 DIP("%s %s,%s\n", opname, in dis_MMX_shiftG_byE() 7209 DIP("%s %s,%s\n", opname, in dis_MMX_shiftG_byE() 7263 ULong dis_MMX_shiftE_imm ( Long delta, const HChar* opname, IROp op ) in dis_MMX_shiftE_imm() argument 7275 DIP("%s $%d,%s\n", opname, in dis_MMX_shiftE_imm() 8703 const HChar* opname, IROp op, in dis_SSE_E_to_G_all_wrk() argument 8725 DIP("%s %s,%s\n", opname, in dis_SSE_E_to_G_all_wrk() 8740 DIP("%s %s,%s\n", opname, in dis_SSE_E_to_G_all_wrk() 8753 const HChar* opname, IROp op ) in dis_SSE_E_to_G_all() argument 8755 return dis_SSE_E_to_G_all_wrk( vbi, pfx, delta, opname, op, False ); in dis_SSE_E_to_G_all() [all …]
|
D | guest_x86_toIR.c | 5704 const HChar* opname, IROp op ) in dis_MMX_shiftG_byE() argument 5718 DIP("%s %s,%s\n", opname, in dis_MMX_shiftG_byE() 5725 DIP("%s %s,%s\n", opname, in dis_MMX_shiftG_byE() 5780 UInt dis_MMX_shiftE_imm ( Int delta, const HChar* opname, IROp op ) in dis_MMX_shiftE_imm() argument 5792 DIP("%s $%d,%s\n", opname, in dis_MMX_shiftE_imm() 6994 const HChar* opname, IROp op, in dis_SSE_E_to_G_all_wrk() argument 7015 DIP("%s %s,%s\n", opname, in dis_SSE_E_to_G_all_wrk() 7030 DIP("%s %s,%s\n", opname, in dis_SSE_E_to_G_all_wrk() 7041 UInt dis_SSE_E_to_G_all ( UChar sorb, Int delta, const HChar* opname, IROp op ) in dis_SSE_E_to_G_all() argument 7043 return dis_SSE_E_to_G_all_wrk( sorb, delta, opname, op, False ); in dis_SSE_E_to_G_all() [all …]
|
/external/libexif/po/ |
D | nl.po | 991 msgstr "Ingeschakeld, alleen opname" 2669 "Geeft de status van de GPS-ontvanger als de opname is vastgelegd. 'A' " 2729 "opname wordt aangegeven. 'T' betekent het ware noorden en 'M' is het " 2753 "De referentie waarmee de richting van de afbeelding tijdens de opname wordt " 2765 "Geeft de richting van de afbeelding tijdens de opname. Het bereik ligt " 2858 "De referentie waarmee de richting van de afbeelding tijdens de opname wordt " 3606 "De datum en het tijdstip waarop de opname als digitale gegevens is " 4168 "Dit label toont de belichtingsmodus op het moment van opname. In auto-" 4174 msgstr "Dit label toont de witbalansmodus op het moment van opname" 4186 "Dit label toont de digitale zoom op het moment van opname. Als de noemer van " [all …]
|
/external/clang/include/clang/Basic/ |
D | arm_neon.td | 469 class ScalarMulOp<string opname> : 470 Op<(call opname, $p0, (call "vget_lane", $p1, $p2))>;
|