| /third_party/ltp/tools/sparse/sparse-src/ |
| H A D | linearize.c | 1982 static pseudo_t linearize_compound_statement(struct entrypoint *ep, struct statement *stmt) in linearize_compound_statement() argument 2010 static pseudo_t linearize_fn_statement(struct entrypoint *ep, struct statement *stmt) in linearize_fn_statement() argument 2032 static pseudo_t linearize_inlined_call(struct entrypoint *ep, struct statement *stmt) in linearize_inlined_call() argument 2060 linearize_context(struct entrypoint *ep, struct statement *stmt) linearize_context() argument 2071 linearize_range(struct entrypoint *ep, struct statement *stmt) linearize_range() argument 2130 linearize_asm_statement(struct entrypoint *ep, struct statement *stmt) linearize_asm_statement() argument 2200 linearize_declaration(struct entrypoint *ep, struct statement *stmt) linearize_declaration() argument 2212 linearize_return(struct entrypoint *ep, struct statement *stmt) linearize_return() argument 2227 linearize_switch(struct entrypoint *ep, struct statement *stmt) linearize_switch() argument 2297 linearize_iterator(struct entrypoint *ep, struct statement *stmt) linearize_iterator() argument 2344 linearize_statement(struct entrypoint *ep, struct statement *stmt) linearize_statement() argument 2534 struct statement *stmt = base_type->stmt; linearize_fn() local [all...] |
| H A D | compile-i386.c | 1484 static void emit_if_conditional(struct statement *stmt) in emit_if_conditional() argument 1534 static struct storage *emit_return_stmt(struct statement *stmt) in emit_return_stmt() argument 1705 static void emit_case_statement(struct statement *stmt) in emit_case_statement() argument 1711 emit_switch_statement(struct statement *stmt) emit_switch_statement() argument 1847 struct statement *stmt = type->stmt; x86_symbol() local 1910 emit_loop(struct statement *stmt) emit_loop() argument 1990 x86_statement(struct statement *stmt) x86_statement() argument [all...] |
| H A D | evaluate.c | 3580 static struct symbol *evaluate_return_expression(struct statement *stmt) in evaluate_return_expression() argument 3606 static void evaluate_if_statement(struct statement *stmt) in evaluate_if_statement() argument 3616 evaluate_iterator(struct statement *stmt) evaluate_iterator() argument 3737 evaluate_asm_statement(struct statement *stmt) evaluate_asm_statement() argument 3798 evaluate_case_statement(struct statement *stmt) evaluate_case_statement() argument 3853 evaluate_switch_statement(struct statement *stmt) evaluate_switch_statement() argument 3874 evaluate_goto_statement(struct statement *stmt) evaluate_goto_statement() argument 3887 evaluate_statement(struct statement *stmt) evaluate_statement() argument [all...] |
| H A D | parse.c | 664 struct statement *stmt = __alloc_statement(0); alloc_statement() local 1984 parse_asm_operands(struct token *token, struct statement *stmt, struct asm_operand_list **inout) parse_asm_operands() argument 2006 parse_asm_clobbers(struct token *token, struct statement *stmt, struct expression_list **clobbers) parse_asm_clobbers() argument 2019 parse_asm_labels(struct token *token, struct statement *stmt, struct symbol_list **labels) parse_asm_labels() argument 2035 parse_asm_statement(struct token *token, struct statement *stmt) parse_asm_statement() argument 2096 struct statement *stmt; make_statement() local 2114 start_iterator(struct statement *stmt) start_iterator() argument 2131 end_iterator(struct statement *stmt) end_iterator() argument 2139 struct statement *stmt = alloc_statement(sym->pos, STMT_COMPOUND); start_function() local 2174 start_switch(struct statement *stmt) start_switch() argument 2194 end_switch(struct statement *stmt) end_switch() argument 2201 add_case_statement(struct statement *stmt) add_case_statement() argument 2218 parse_return_statement(struct token *token, struct statement *stmt) parse_return_statement() argument 2240 parse_for_statement(struct token *token, struct statement *stmt) parse_for_statement() argument 2275 parse_while_statement(struct token *token, struct statement *stmt) parse_while_statement() argument 2292 parse_do_statement(struct token *token, struct statement *stmt) parse_do_statement() argument 2315 parse_if_statement(struct token *token, struct statement *stmt) parse_if_statement() argument 2327 case_statement(struct token *token, struct statement *stmt) case_statement() argument 2335 parse_case_statement(struct token *token, struct statement *stmt) parse_case_statement() argument 2343 parse_default_statement(struct token *token, struct statement *stmt) parse_default_statement() argument 2348 parse_loop_iterator(struct token *token, struct statement *stmt) parse_loop_iterator() argument 2358 parse_switch_statement(struct token *token, struct statement *stmt) parse_switch_statement() argument 2389 parse_goto_statement(struct token *token, struct statement *stmt) parse_goto_statement() argument 2407 parse_context_statement(struct token *token, struct statement *stmt) parse_context_statement() argument 2426 parse_range_statement(struct token *token, struct statement *stmt) parse_range_statement() argument 2451 struct statement *stmt = alloc_statement(token->pos, STMT_NONE); statement() local 2516 struct statement * stmt; statement_list() local 2589 compound_statement(struct token *token, struct statement *stmt) compound_statement() argument 2741 struct statement *stmt, **p; parse_function_body() local 2875 struct statement *stmt; toplevel_asm_declaration() local [all...] |
| /third_party/mesa3d/src/compiler/glsl/ |
| H A D | ast_to_hir.cpp | 1616 ir_if *const stmt = new(ctx) ir_if(op[0]); in do_hir() local 1650 ir_if *const stmt = new(ctx) ir_if(op[0]); in do_hir() local 1927 ir_if *const stmt = new(ctx) ir_if(op[0]); do_hir() local 6676 ir_if *const stmt = new(ctx) ir_if(condition); hir() local 7175 ir_loop *const stmt = new(ctx) ir_loop(); hir() local [all...] |
| /third_party/node/deps/v8/src/parsing/ |
| H A D | parser.cc | 2060 TryCatchStatement* stmt = factory()->NewTryCatchStatement( in RewriteTryStatement() local 2066 TryFinallyStatement* stmt = in RewriteTryStatement() local
|
| H A D | parser-base.h | 5549 StatementT stmt = in ParseIfStatement() local 5584 StatementT stmt = factory()->NewContinueStatement(target, pos); in ParseContinueStatement() local 5622 StatementT stmt = factory()->NewBreakStatement(target, pos); in ParseBreakStatement() local 5672 StatementT stmt in ParseReturnStatement() local 5789 StatementT stmt = impl()->NewThrowStatement(exception, pos); ParseThrowStatement() local [all...] |
| /third_party/skia/src/sksl/codegen/ |
| H A D | SkSLSPIRVCodeGenerator.cpp | 3208 void SPIRVCodeGenerator::writeIfStatement(const IfStatement& stmt, OutputStream& out) { in writeIfStatement() argument [all...] |
| /third_party/skia/third_party/externals/tint/src/writer/spirv/ |
| H A D | builder.cc | 2193 bool Builder::GenerateBlockStatement(const ast::BlockStatement* stmt) { in GenerateBlockStatement() argument 3557 bool Builder::GenerateIfStatement(const ast::IfStatement* stmt) { in GenerateIfStatement() argument 2199 GenerateBlockStatementWithoutScoping( const ast::BlockStatement* stmt) GenerateBlockStatementWithoutScoping() argument 3608 GenerateSwitchStatement(const ast::SwitchStatement* stmt) GenerateSwitchStatement() argument 3710 GenerateReturnStatement(const ast::ReturnStatement* stmt) GenerateReturnStatement() argument 3729 GenerateLoopStatement(const ast::LoopStatement* stmt) GenerateLoopStatement() argument 3814 GenerateStatement(const ast::Statement* stmt) GenerateStatement() argument 3857 GenerateVariableDeclStatement( const ast::VariableDeclStatement* stmt) GenerateVariableDeclStatement() argument [all...] |
| /third_party/node/deps/v8/src/ast/ |
| H A D | ast.h | 2726 Statement* stmt = statements->at(i); in VisitStatements() local
|
| /third_party/node/deps/v8/src/torque/ |
| H A D | implementation-visitor.cc | 59 const Type* ImplementationVisitor::Visit(Statement* stmt) { in Visit() argument 727 const Type* ImplementationVisitor::Visit(VarDeclarationStatement* stmt) { in Visit() argument 732 Visit( VarDeclarationStatement* stmt, BlockBindings<LocalValue>* block_bindings) Visit() argument 782 Visit(TailCallStatement* stmt) Visit() argument 1014 Visit(GotoStatement* stmt) Visit() argument 1044 Visit(IfStatement* stmt) Visit() argument 1133 Visit(WhileStatement* stmt) Visit() argument 1173 Visit(DebugStatement* stmt) Visit() argument 1208 Visit(AssertStatement* stmt) Visit() argument 1262 Visit(ExpressionStatement* stmt) Visit() argument 1267 Visit(ReturnStatement* stmt) Visit() argument 1696 Visit(BreakStatement* stmt) Visit() argument 1706 Visit(ContinueStatement* stmt) Visit() argument 1716 Visit(ForLoopStatement* stmt) Visit() argument [all...] |
| /third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderexecutor/ |
| H A D | vktShaderBuiltinPrecisionTests.cpp | 1156 void addStatement (const StatementP& stmt) in addStatement() argument 1200 ostream& operator<<(ostream& os, const Statement& stmt) in operator <<() argument
|
| /third_party/toybox/toys/pending/ |
| H A D | awk.c | 2194 static void stmt(void) stmt() function [all...] |
| /third_party/vk-gl-cts/modules/glshared/ |
| H A D | glsBuiltinPrecisionTests.cpp | 684 ostream& operator<<(ostream& os, const Statement& stmt) in operator <<() argument 717 void addStatement (const StatementP& stmt) in addStatement() argument 4616 testStatement(const Variables<In, Out>& variables, const Inputs<In>& inputs, const Statement& stmt) testStatement() argument 5129 StatementP stmt = variableAssignment(variables.out0, expr); runTest() local 5187 StatementP stmt = variableAssignment(variables.out0, expr); runTest() local [all...] |
| /third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderexecutor/ |
| H A D | vktShaderBuiltinPrecisionTests.cpp | 1157 void addStatement (const StatementP& stmt) in addStatement() argument 1201 ostream& operator<<(ostream& os, const Statement& stmt) in operator <<() argument
|
| /third_party/node/deps/v8/src/interpreter/ |
| H A D | bytecode-generator.cc | 129 void Break(Statement* stmt) { in Break() argument 132 void Continue(Statement* stmt) { in Continue() argument 1517 void BytecodeGenerator::VisitBlock(Block* stmt) { in VisitBlock() argument 1529 VisitBlockDeclarationsAndStatements(Block* stmt) VisitBlockDeclarationsAndStatements() argument 1530 BlockBuilder block_builder(builder(), block_coverage_builder_, stmt); VisitBlockDeclarationsAndStatements() local 1721 Statement* stmt = statements->at(i); VisitStatements() local 1727 VisitExpressionStatement(ExpressionStatement* stmt) VisitExpressionStatement() argument 1732 VisitEmptyStatement(EmptyStatement* stmt) VisitEmptyStatement() argument 1734 VisitIfStatement(IfStatement* stmt) VisitIfStatement() argument 1736 builder(), block_coverage_builder_, stmt); VisitIfStatement() local 1767 VisitSloppyBlockFunctionStatement( SloppyBlockFunctionStatement* stmt) VisitSloppyBlockFunctionStatement() argument 1772 VisitContinueStatement(ContinueStatement* stmt) VisitContinueStatement() argument 1778 VisitBreakStatement(BreakStatement* stmt) VisitBreakStatement() argument 1784 VisitReturnStatement(ReturnStatement* stmt) VisitReturnStatement() argument 1799 VisitWithStatement(WithStatement* stmt) VisitWithStatement() argument 1879 IsSwitchOptimizable(SwitchStatement* stmt, SwitchInfo* info) IsSwitchOptimizable() argument 1989 VisitSwitchStatement(SwitchStatement* stmt) VisitSwitchStatement() argument 2011 SwitchBuilder switch_builder(builder(), block_coverage_builder_, stmt, VisitSwitchStatement() local 2240 VisitIterationBody(IterationStatement* stmt, LoopBuilder* loop_builder) VisitIterationBody() argument 2248 VisitDoWhileStatement(DoWhileStatement* stmt) VisitDoWhileStatement() argument 2249 LoopBuilder loop_builder(builder(), block_coverage_builder_, stmt); VisitDoWhileStatement() local 2270 VisitWhileStatement(WhileStatement* stmt) VisitWhileStatement() argument 2271 LoopBuilder loop_builder(builder(), block_coverage_builder_, stmt); VisitWhileStatement() local 2289 VisitForStatement(ForStatement* stmt) VisitForStatement() argument 2294 LoopBuilder loop_builder(builder(), block_coverage_builder_, stmt); VisitForStatement() local 2316 VisitForInStatement(ForInStatement* stmt) VisitForInStatement() argument 2346 LoopBuilder loop_builder(builder(), block_coverage_builder_, stmt); VisitForInStatement() local 2400 VisitForOfStatement(ForOfStatement* stmt) VisitForOfStatement() argument 2461 VisitTryCatchStatement(TryCatchStatement* stmt) VisitTryCatchStatement() argument 2500 VisitTryFinallyStatement(TryFinallyStatement* stmt) VisitTryFinallyStatement() argument 2509 VisitDebuggerStatement(DebuggerStatement* stmt) VisitDebuggerStatement() argument 2866 VisitInitializeClassMembersStatement( InitializeClassMembersStatement* stmt) VisitInitializeClassMembersStatement() argument 2873 VisitInitializeClassStaticElementsStatement( InitializeClassStaticElementsStatement* stmt) VisitInitializeClassStaticElementsStatement() argument 7179 VisitInScope(Statement* stmt, Scope* scope) VisitInScope() argument [all...] |