/external/mesa3d/src/mesa/main/ |
D | APIspec.py | 407 stmts = [] 411 stmts.append("switch (%s) { /* assume GLenum */" % var) 416 stmts.append("case %s:" % val) 419 stmts.extend(dep_stmts) 420 stmts.append(indent + "break;") 422 stmts.append("default:") 423 stmts.append(indent + "ON_ERROR(%s);" % switch[0].error); 424 stmts.append(indent + "break;") 425 stmts.append("}") 427 return stmts [all …]
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
D | APIspec.py | 407 stmts = [] 411 stmts.append("switch (%s) { /* assume GLenum */" % var) 416 stmts.append("case %s:" % val) 419 stmts.extend(dep_stmts) 420 stmts.append(indent + "break;") 422 stmts.append("default:") 423 stmts.append(indent + "ON_ERROR(%s);" % switch[0].error); 424 stmts.append(indent + "break;") 425 stmts.append("}") 427 return stmts [all …]
|
/external/libpcap/ |
D | optimize.c | 423 for (s = b->stmts; s; s = s->next) { in compute_local_ud() 661 s = b->stmts; in opt_peep() 1135 for (s = b->stmts; s != 0; s = s->next) in opt_deadstores() 1155 for (s = b->stmts; s && s->next; s = s->next) in opt_blk() 1196 for (s = b->stmts; s; s = s->next) in opt_blk() 1226 if (b->stmts != 0) { in opt_blk() 1227 b->stmts = 0; in opt_blk() 1626 s = (*b)->stmts; in opt_root() 1627 (*b)->stmts = 0; in opt_root() 1631 tmp = (*b)->stmts; in opt_root() [all …]
|
D | gencode.c | 759 b->stmts = s; 1703 b->stmts = s; 2642 s = gen_load_802_11_header_len(s, b->stmts); 2653 sappend(s, b->stmts); 2654 b->stmts = s; 2673 b->stmts = s_load_dlt; in gen_ppi_dlt_check() 3868 b1->stmts = s; 3883 b2->stmts = s; 3906 b1->stmts = s; 3915 b2->stmts = s; [all …]
|
D | gencode.h | 251 struct slist *stmts; /* side effect stmts */ member
|
/external/valgrind/main/exp-sgcheck/ |
D | h_main.c | 666 while (i < sbIn->stmts_used && sbIn->stmts[i]->tag != Ist_IMark) { in h_instrument() 667 IRStmt* st = sbIn->stmts[i]; in h_instrument() 670 stmt( 'C', &pce, sbIn->stmts[i] ); in h_instrument() 679 tl_assert(sbIn->stmts[i]->tag == Ist_IMark); in h_instrument() 683 sg_instrument_IRStmt( sgenv, pce.sb, sbIn->stmts[i], in h_instrument() 686 stmt( 'C', &pce, sbIn->stmts[i] ); in h_instrument()
|
/external/valgrind/main/VEX/priv/ |
D | ir_inject.c | 255 ppIRStmt(irsb->stmts[irsb->stmts_used - 1]); in vex_inject_ir() 257 ppIRStmt(irsb->stmts[irsb->stmts_used - 2]); in vex_inject_ir() 259 ppIRStmt(irsb->stmts[irsb->stmts_used - 1]); in vex_inject_ir()
|
D | ir_opt.c | 528 if (in->stmts[i]) in flatten_BB() 529 flatten_Stmt( out, in->stmts[i] ); in flatten_BB() 622 IRStmt* st = bb->stmts[i]; in redundant_get_removal_BB() 651 bb->stmts[i] = IRStmt_WrTmp(st->Ist.WrTmp.tmp, valE); in redundant_get_removal_BB() 900 st = bb->stmts[i]; in redundant_put_removal_BB() 966 bb->stmts[i] = IRStmt_NoOp(); in redundant_put_removal_BB() 2724 st2 = in->stmts[i]; in cprop_BB() 2813 IRStmt* nop = out->stmts[ix]; in cprop_BB() 2814 IRStmt* lgu = out->stmts[ix+1]; in cprop_BB() 2837 out->stmts[ix] in cprop_BB() [all …]
|
D | guest_generic_bb_to_IR.c | 385 imark = irsb->stmts[first_stmt_idx]; in bb_to_IR() 395 ppIRStmt(irsb->stmts[i]); in bb_to_IR() 410 { IRStmt* st = irsb->stmts[irsb->stmts_used-1]; in bb_to_IR() 680 irsb->stmts[selfcheck_idx + i * 5 + 0] in bb_to_IR() 683 irsb->stmts[selfcheck_idx + i * 5 + 1] in bb_to_IR() 686 irsb->stmts[selfcheck_idx + i * 5 + 2] in bb_to_IR() 689 irsb->stmts[selfcheck_idx + i * 5 + 3] in bb_to_IR() 731 irsb->stmts[selfcheck_idx + i * 5 + 4] in bb_to_IR()
|
D | ir_defs.c | 1564 ppIRStmt(bb->stmts[i]); in ppIRSB() 2105 bb->stmts = LibVEX_Alloc(bb->stmts_size * sizeof(IRStmt*)); in emptyIRSB() 2356 sts2[i] = deepCopyIRStmt(bb->stmts[i]); in deepCopyIRSB() 2357 bb2->stmts = sts2; in deepCopyIRSB() 3307 stmts2[i] = bb->stmts[i]; in addStmtToIRSB() 3308 bb->stmts = stmts2; in addStmtToIRSB() 3312 bb->stmts[bb->stmts_used] = st; in addStmtToIRSB() 4339 stmt = bb->stmts[i]; in sanityCheckIRSB() 4359 stmt = bb->stmts[i]; in sanityCheckIRSB() 4432 if (bb->stmts[i]) in sanityCheckIRSB() [all …]
|
/external/mesa3d/src/glsl/ |
D | glsl_parser_extras.cpp | 854 if (stmts != NULL) { in print() 855 stmts->print(); in print() 861 ast_switch_body::ast_switch_body(ast_case_statement_list *stmts) in ast_switch_body() argument 863 this->stmts = stmts; in ast_switch_body() 903 foreach_list_const(n, & this->stmts) { in print()
|
D | ast.h | 678 exec_list stmts; variable 699 ast_switch_body(ast_case_statement_list *stmts); 705 ast_case_statement_list *stmts; variable
|
D | glsl_parser.yy | 1791 ast_case_statement *stmts = new(state) ast_case_statement($1); 1792 stmts->set_location(yylloc); 1794 stmts->stmts.push_tail(& $2->link); 1795 $$ = stmts; 1800 $$->stmts.push_tail(& $2->link);
|
/external/chromium_org/third_party/mesa/src/src/glsl/ |
D | glsl_parser_extras.cpp | 854 if (stmts != NULL) { in print() 855 stmts->print(); in print() 861 ast_switch_body::ast_switch_body(ast_case_statement_list *stmts) in ast_switch_body() argument 863 this->stmts = stmts; in ast_switch_body() 903 foreach_list_const(n, & this->stmts) { in print()
|
D | ast.h | 678 exec_list stmts; variable 699 ast_switch_body(ast_case_statement_list *stmts); 705 ast_case_statement_list *stmts; variable
|
D | glsl_parser.yy | 1791 ast_case_statement *stmts = new(state) ast_case_statement($1); 1792 stmts->set_location(yylloc); 1794 stmts->stmts.push_tail(& $2->link); 1795 $$ = stmts; 1800 $$->stmts.push_tail(& $2->link);
|
/external/valgrind/main/exp-bbv/ |
D | bbv_main.c | 372 while ( (i < sbIn->stmts_used) && (sbIn->stmts[i]->tag!=Ist_IMark)) { in bbv_instrument() 373 addStmtToIRSB( sbOut, sbIn->stmts[i] ); in bbv_instrument() 379 st = sbIn->stmts[i]; in bbv_instrument() 423 st=sbIn->stmts[i]; in bbv_instrument()
|
/external/chromium_org/v8/src/ |
D | typing.cc | 128 void AstTyper::VisitStatements(ZoneList<Statement*>* stmts) { in VisitStatements() argument 129 for (int i = 0; i < stmts->length(); ++i) { in VisitStatements() 130 Statement* stmt = stmts->at(i); in VisitStatements() 227 ZoneList<Statement*>* stmts = clause->statements(); in VisitSwitchStatement() local 228 RECURSE(VisitStatements(stmts)); in VisitSwitchStatement() 230 if (stmts->is_empty() || stmts->last()->IsJump()) { in VisitSwitchStatement()
|
/external/valgrind/main/drd/ |
D | drd_load_store.c | 321 if (bb->stmts[i] in is_stack_access() 322 && bb->stmts[i]->tag == Ist_WrTmp in is_stack_access() 323 && bb->stmts[i]->Ist.WrTmp.tmp == addr_expr->Iex.RdTmp.tmp) in is_stack_access() 325 IRExpr* e = bb->stmts[i]->Ist.WrTmp.data; in is_stack_access() 614 IRStmt* const st = bb_in->stmts[i]; in DRD_()
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/ |
D | parser.py | 401 stmts = set() 405 stmts.add(l) 406 return stmts
|
/external/valgrind/main/lackey/ |
D | lk_main.c | 673 while (i < sbIn->stmts_used && sbIn->stmts[i]->tag != Ist_IMark) { in lk_instrument() 674 addStmtToIRSB( sbOut, sbIn->stmts[i] ); in lk_instrument() 701 IRStmt* st = sbIn->stmts[i]; in lk_instrument()
|
/external/valgrind/main/cachegrind/ |
D | cg_main.c | 618 st = sbIn->stmts[i]; in get_SB_info() 1073 while (i < sbIn->stmts_used && sbIn->stmts[i]->tag != Ist_IMark) { in cg_instrument() 1074 addStmtToIRSB( cgs.sbOut, sbIn->stmts[i] ); in cg_instrument() 1081 st = sbIn->stmts[i]; in cg_instrument() 1103 st = sbIn->stmts[i]; in cg_instrument()
|
/external/valgrind/main/exp-dhat/ |
D | dh_main.c | 895 while (i < sbIn->stmts_used && sbIn->stmts[i]->tag != Ist_IMark) { in dh_instrument() 896 addStmtToIRSB( sbOut, sbIn->stmts[i] ); in dh_instrument() 901 IRStmt* st = sbIn->stmts[i]; in dh_instrument()
|
/external/valgrind/main/callgrind/ |
D | main.c | 879 st = sbIn->stmts[i]; in CLG_() 986 while (i < sbIn->stmts_used && sbIn->stmts[i]->tag != Ist_IMark) { in CLG_() 987 addStmtToIRSB( clgs.sbOut, sbIn->stmts[i] ); in CLG_() 994 st = sbIn->stmts[i]; in CLG_() 1017 st = sbIn->stmts[i]; in CLG_()
|
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/ |
D | glsl_parser.cc | 5425 ast_case_statement *stmts = new(state) ast_case_statement((yyvsp[(1) - (2)].case_label_list)); local 5426 stmts->set_location(yylloc); 5428 stmts->stmts.push_tail(& (yyvsp[(2) - (2)].node)->link); 5429 (yyval.case_statement) = stmts; 5439 (yyval.case_statement)->stmts.push_tail(& (yyvsp[(2) - (2)].node)->link);
|