/third_party/mesa3d/src/panfrost/bifrost/ |
D | bi_scoreboard.c | 171 bi_push_clause(struct bi_scoreboard_state *st, bi_clause *clause) in bi_push_clause() argument 173 bi_instr *I = clause->message; in bi_push_clause() 174 unsigned slot = clause->scoreboard_id; in bi_push_clause() 188 bi_depend_on_writers(bi_clause *clause, struct bi_scoreboard_state *st, uint64_t regmask) in bi_depend_on_writers() argument 197 clause->dependencies |= BITFIELD_BIT(slot); in bi_depend_on_writers() 202 bi_set_staging_barrier(bi_clause *clause, struct bi_scoreboard_state *st, uint64_t regmask) in bi_set_staging_barrier() argument 209 clause->staging_barrier = true; in bi_set_staging_barrier() 216 bi_set_dependencies(bi_block *block, bi_clause *clause, struct bi_scoreboard_state *st) in bi_set_dependencies() argument 218 bi_foreach_instr_in_clause(block, clause, I) { in bi_set_dependencies() 223 bi_depend_on_writers(clause, st, read | written); in bi_set_dependencies() [all …]
|
D | bi_print.c | 83 bi_print_clause(bi_clause *clause, FILE *fp) in bi_print_clause() argument 85 fprintf(fp, "id(%u)", clause->scoreboard_id); in bi_print_clause() 87 if (clause->dependencies) { in bi_print_clause() 91 if (clause->dependencies & (1 << i)) in bi_print_clause() 98 fprintf(fp, " %s", bi_flow_control_name(clause->flow_control)); in bi_print_clause() 100 if (!clause->next_clause_prefetch) in bi_print_clause() 103 if (clause->staging_barrier) in bi_print_clause() 106 if (clause->td) in bi_print_clause() 109 if (clause->pcrel_idx != ~0) in bi_print_clause() 110 fprintf(fp, " pcrel(%u)", clause->pcrel_idx); in bi_print_clause() [all …]
|
D | bi_layout.c | 73 bi_clause_quadwords(bi_clause *clause) in bi_clause_quadwords() argument 75 unsigned X = clause->tuple_count; in bi_clause_quadwords() 78 unsigned constants = clause->constant_count; in bi_clause_quadwords() 103 bi_foreach_clause_in_block_from(start->block, clause, start) { in bi_block_offset() 104 ret += bi_clause_quadwords(clause); in bi_block_offset() 119 bi_foreach_clause_in_block(blk, clause) { in bi_block_offset() 120 ret += bi_clause_quadwords(clause); in bi_block_offset() 126 bi_foreach_clause_in_block_from_rev(start->block, clause, start) { in bi_block_offset() 127 if (clause == start) in bi_block_offset() 130 ret -= bi_clause_quadwords(clause); in bi_block_offset() [all …]
|
D | bi_schedule.c | 322 struct bi_clause_state *clause, struct bi_tuple_state *tuple) in bi_lower_cubeface() argument 344 bi_lower_atom_c(bi_context *ctx, struct bi_clause_state *clause, struct in bi_lower_atom_c() argument 363 bi_lower_atom_c1(bi_context *ctx, struct bi_clause_state *clause, struct in bi_lower_atom_c1() argument 385 struct bi_clause_state *clause, struct bi_tuple_state *tuple) in bi_lower_seg_add() argument 405 struct bi_clause_state *clause, struct bi_tuple_state *tuple) in bi_lower_dtsel() argument 762 bi_nconstants(struct bi_clause_state *clause) in bi_nconstants() argument 766 for (unsigned i = 0; i < ARRAY_SIZE(clause->consts); ++i) in bi_nconstants() 767 count_32 += clause->consts[i].constant_count; in bi_nconstants() 775 bi_space_for_more_constants(struct bi_clause_state *clause) in bi_space_for_more_constants() argument 777 return (bi_nconstants(clause) < 13 - (clause->tuple_count + 1)); in bi_space_for_more_constants() [all …]
|
D | bi_pack.c | 32 bi_pack_header(bi_clause *clause, bi_clause *next_1, bi_clause *next_2) in bi_pack_header() argument 43 if (clause->message_type == BIFROST_MESSAGE_BARRIER) in bi_pack_header() 52 BIFROST_FLOW_END : clause->flow_control, in bi_pack_header() 53 .terminate_discarded_threads = clause->td, in bi_pack_header() 54 .next_clause_prefetch = clause->next_clause_prefetch && next_1, in bi_pack_header() 56 .staging_register = clause->staging_register, in bi_pack_header() 58 .dependency_slot = clause->scoreboard_id, in bi_pack_header() 59 .message_type = clause->message_type, in bi_pack_header() 61 .flush_to_zero = clause->ftz ? BIFROST_FTZ_ALWAYS : BIFROST_FTZ_DISABLE in bi_pack_header() 321 bi_pack_tuple(bi_clause *clause, bi_tuple *tuple, bi_tuple *prev, bool first_tuple, gl_shader_stage… in bi_pack_tuple() argument [all …]
|
D | bir.c | 152 bi_next_clause(bi_context *ctx, bi_block *block, bi_clause *clause) in bi_next_clause() argument 154 if (!block && !clause) in bi_next_clause() 158 if (!clause && !list_is_empty(&block->clauses)) in bi_next_clause() 162 if (clause && clause->link.next != &block->clauses) in bi_next_clause() 163 return list_first_entry(&(clause->link), bi_clause, link); in bi_next_clause()
|
D | compiler.h | 1069 bi_clause * bi_next_clause(bi_context *ctx, bi_block *block, bi_clause *clause); 1079 void bi_print_clause(bi_clause *clause, FILE *fp); 1279 bi_first_instr_in_clause(bi_clause *clause) in bi_first_instr_in_clause() argument 1281 return bi_first_instr_in_tuple(&clause->tuples[0]); in bi_first_instr_in_clause() 1285 bi_last_instr_in_clause(bi_clause *clause) in bi_last_instr_in_clause() argument 1287 bi_tuple tuple = clause->tuples[clause->tuple_count - 1]; in bi_last_instr_in_clause() 1291 assert(clause->tuple_count >= 2); in bi_last_instr_in_clause() 1292 tuple = clause->tuples[clause->tuple_count - 2]; in bi_last_instr_in_clause() 1303 #define bi_foreach_instr_in_clause(block, clause, pos) \ argument 1304 for (bi_instr *pos = list_entry(bi_first_instr_in_clause(clause), bi_instr, link); \ [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | switchStatementsWithMultipleDefaults.js | 9 default: // Error; second 'default' clause. 10 default: // Error; third 'default' clause. 21 default: // Error; second 'default' clause. 25 default: // Error, third 'default' clause 26 def\u0061ult: // Error, fourth 'default' clause. 40 default: // Error; second 'default' clause. 41 default: // Error; third 'default' clause. 51 default: // Error; second 'default' clause. 55 default: // Error, third 'default' clause 56 default: // Error, fourth 'default' clause.
|
D | redeclareParameterInCatchBlock.errors.txt | 1 …clareParameterInCatchBlock.ts(4,11): error TS2492: Cannot redeclare identifier 'e' in catch clause. 2 …clareParameterInCatchBlock.ts(10,9): error TS2492: Cannot redeclare identifier 'e' in catch clause. 3 …lareParameterInCatchBlock.ts(16,15): error TS2492: Cannot redeclare identifier 'b' in catch clause. 14 !!! error TS2492: Cannot redeclare identifier 'e' in catch clause. 22 !!! error TS2492: Cannot redeclare identifier 'e' in catch clause. 30 !!! error TS2492: Cannot redeclare identifier 'b' in catch clause.
|
D | jsdocCatchClauseWithTypeAnnotation.errors.txt | 3 tests/cases/conformance/jsdoc/foo.js(22,31): error TS1196: Catch clause variable type annotation mu… 4 tests/cases/conformance/jsdoc/foo.js(23,31): error TS1196: Catch clause variable type annotation mu… 5 …es/conformance/jsdoc/foo.js(35,7): error TS2492: Cannot redeclare identifier 'err' in catch clause. 6 tests/cases/conformance/jsdoc/foo.js(48,31): error TS1196: Catch clause variable type annotation mu… 7 tests/cases/conformance/jsdoc/foo.js(49,31): error TS1196: Catch clause variable type annotation mu… 38 !!! error TS1196: Catch clause variable type annotation must be 'any' or 'unknown' if specified. 41 !!! error TS1196: Catch clause variable type annotation must be 'any' or 'unknown' if specified. 55 !!! error TS2492: Cannot redeclare identifier 'err' in catch clause. 70 !!! error TS1196: Catch clause variable type annotation must be 'any' or 'unknown' if specified. 73 !!! error TS1196: Catch clause variable type annotation must be 'any' or 'unknown' if specified.
|
D | switchStatementsWithMultipleDefaults.errors.txt | 12 default: // Error; second 'default' clause. 13 default: // Error; third 'default' clause. 24 default: // Error; second 'default' clause. 28 default: // Error, third 'default' clause 29 def\u0061ult: // Error, fourth 'default' clause.
|
D | switchStatementsWithMultipleDefaults.types | 17 default: // Error; second 'default' clause. 18 default: // Error; third 'default' clause. 42 default: // Error; second 'default' clause. 52 default: // Error, third 'default' clause 53 def\u0061ult: // Error, fourth 'default' clause.
|
D | switchStatementsWithMultipleDefaults1.js | 9 default: // Error; second 'default' clause. 10 default: // Error; third 'default' clause. 22 default: // Error; second 'default' clause. 23 default: // Error; third 'default' clause.
|
D | catchClauseWithTypeAnnotation.errors.txt | 3 …yStatements/catchClauseWithTypeAnnotation.ts(19,23): error TS1196: Catch clause variable type anno… 4 …yStatements/catchClauseWithTypeAnnotation.ts(20,23): error TS1196: Catch clause variable type anno… 5 …hClauseWithTypeAnnotation.ts(29,29): error TS2492: Cannot redeclare identifier 'x' in catch clause. 7 …yStatements/catchClauseWithTypeAnnotation.ts(38,27): error TS1196: Catch clause variable type anno… 8 …yStatements/catchClauseWithTypeAnnotation.ts(39,27): error TS1196: Catch clause variable type anno… 36 !!! error TS1196: Catch clause variable type annotation must be 'any' or 'unknown' if specified. 39 !!! error TS1196: Catch clause variable type annotation must be 'any' or 'unknown' if specified. 50 !!! error TS2492: Cannot redeclare identifier 'x' in catch clause. 64 !!! error TS1196: Catch clause variable type annotation must be 'any' or 'unknown' if specified. 67 !!! error TS1196: Catch clause variable type annotation must be 'any' or 'unknown' if specified.
|
D | implementClausePrecedingExtends.errors.txt | 1 …ntClausePrecedingExtends.ts(2,22): error TS1173: 'extends' clause must precede 'implements' clause. 8 !!! error TS1173: 'extends' clause must precede 'implements' clause.
|
D | switchStatementsWithMultipleDefaults.symbols | 12 default: // Error; second 'default' clause. 13 default: // Error; third 'default' clause. 31 default: // Error; second 'default' clause. 38 default: // Error, third 'default' clause 39 def\u0061ult: // Error, fourth 'default' clause.
|
D | switchStatementsWithMultipleDefaults1.errors.txt | 1 …switchStatementsWithMultipleDefaults1.ts(8,9): error TS1113: A 'default' clause cannot appear more… 12 default: // Error; second 'default' clause. 14 !!! error TS1113: A 'default' clause cannot appear more than once in a 'switch' statement. 15 default: // Error; third 'default' clause.
|
D | parserClassDeclaration3.errors.txt | 2 …/parserClassDeclaration3.ts(1,22): error TS1173: 'extends' clause must precede 'implements' clause. 11 !!! error TS1173: 'extends' clause must precede 'implements' clause.
|
D | staticMethodWithTypeParameterExtendsClauseDeclFile.types | 13 private static myPrivateStaticMethod1<T extends privateClass>() { // do not emit extends clause 16 private myPrivateMethod1<T extends privateClass>() { // do not emit extends clause 19 private static myPrivateStaticMethod2<T extends publicClass>() { // do not emit extends clause 22 private myPrivateMethod2<T extends publicClass>() { // do not emit extends clause
|
D | staticMethodWithTypeParameterExtendsClauseDeclFile.symbols | 13 private static myPrivateStaticMethod1<T extends privateClass>() { // do not emit extends clause 18 private myPrivateMethod1<T extends privateClass>() { // do not emit extends clause 23 private static myPrivateStaticMethod2<T extends publicClass>() { // do not emit extends clause 28 private myPrivateMethod2<T extends publicClass>() { // do not emit extends clause
|
/third_party/python/Doc/tutorial/ |
D | errors.rst | 98 * First, the *try clause* (the statement(s) between the :keyword:`try` and 101 * If no exception occurs, the *except clause* is skipped and execution of the 104 * If an exception occurs during execution of the :keyword:`try` clause, the rest of the 105 clause is skipped. Then, if its type matches the exception named after the 106 :keyword:`except` keyword, the *except clause* is executed, and then execution 110 clause*, it is passed on to outer :keyword:`try` statements; if no handler is 114 A :keyword:`try` statement may have more than one *except clause*, to specify 116 Handlers only handle exceptions that occur in the corresponding *try clause*, 117 not in other handlers of the same :keyword:`!try` statement. An *except clause* 123 A class in an :keyword:`except` clause is compatible with an exception if it is [all …]
|
/third_party/typescript/tests/cases/compiler/ |
D | switchStatementsWithMultipleDefaults.ts | 9 default: // Error; second 'default' clause. 10 default: // Error; third 'default' clause. 21 default: // Error; second 'default' clause. 25 default: // Error, third 'default' clause 26 def\u0061ult: // Error, fourth 'default' clause.
|
/third_party/vk-gl-cts/external/vulkan-docs/src/config/chunkindex/ |
D | lunr.js | 1414 lunr.TokenSet.fromClause = function (clause) { argument 1415 if ('editDistance' in clause) { 1416 return lunr.TokenSet.fromFuzzyString(clause.term, clause.editDistance) 1418 return lunr.TokenSet.fromString(clause.term) 1995 var clause = query.clauses[i], 1999 if (clause.usePipeline) { 2000 terms = this.pipeline.runString(clause.term, { 2001 fields: clause.fields 2004 terms = [clause.term] 2016 clause.term = term [all …]
|
/third_party/node/deps/v8/src/interpreter/ |
D | control-flow-builders.cc | 105 CaseClause* clause) { in BindCaseTargetForJumpTable() argument 107 BuildBlockCoverage(clause); in BindCaseTargetForJumpTable() 111 CaseClause* clause) { in BindCaseTargetForCompareJump() argument 113 BuildBlockCoverage(clause); in BindCaseTargetForCompareJump() 133 void SwitchBuilder::BindDefault(CaseClause* clause) { in BindDefault() argument 135 BuildBlockCoverage(clause); in BindDefault()
|
/third_party/openssl/doc/man7/ |
D | property.pod | 63 A I<property query clause> is a single conditional test. 67 The third clause represents an optional clause. 72 It is an error if a property name appears in more than one query clause. 88 B<?> is a prefix operator that means that the following clause is optional 93 B<-> is a prefix operator that means any global query clause involving the 130 Where both the context and local queries include a clause with the same name, 131 the local clause overrides the context clause. 133 It is possible for a local property query to remove a clause in the context 140 clause "-fips".
|