/third_party/mesa3d/src/mesa/program/ |
D | arbprogparse.c | 95 program->arb.NumInstructions = prog.arb.NumInstructions; in _mesa_parse_arb_fragment_program() 96 program->arb.NumTemporaries = prog.arb.NumTemporaries; in _mesa_parse_arb_fragment_program() 97 program->arb.NumParameters = prog.arb.NumParameters; in _mesa_parse_arb_fragment_program() 98 program->arb.NumAttributes = prog.arb.NumAttributes; in _mesa_parse_arb_fragment_program() 99 program->arb.NumAddressRegs = prog.arb.NumAddressRegs; in _mesa_parse_arb_fragment_program() 100 program->arb.NumNativeInstructions = prog.arb.NumNativeInstructions; in _mesa_parse_arb_fragment_program() 101 program->arb.NumNativeTemporaries = prog.arb.NumNativeTemporaries; in _mesa_parse_arb_fragment_program() 102 program->arb.NumNativeParameters = prog.arb.NumNativeParameters; in _mesa_parse_arb_fragment_program() 103 program->arb.NumNativeAttributes = prog.arb.NumNativeAttributes; in _mesa_parse_arb_fragment_program() 104 program->arb.NumNativeAddressRegs = prog.arb.NumNativeAddressRegs; in _mesa_parse_arb_fragment_program() [all …]
|
D | programopt.c | 52 const GLuint origLen = vprog->arb.NumInstructions; in insert_mvp_dp4_code() 102 _mesa_copy_instructions (newInst + 4, vprog->arb.Instructions, origLen); in insert_mvp_dp4_code() 105 ralloc_free(vprog->arb.Instructions); in insert_mvp_dp4_code() 108 vprog->arb.Instructions = newInst; in insert_mvp_dp4_code() 109 vprog->arb.NumInstructions = newLen; in insert_mvp_dp4_code() 119 const GLuint origLen = vprog->arb.NumInstructions; in insert_mvp_mad_code() 149 hposTemp = vprog->arb.NumTemporaries++; in insert_mvp_mad_code() 203 _mesa_copy_instructions (newInst + 4, vprog->arb.Instructions, origLen); in insert_mvp_mad_code() 206 ralloc_free(vprog->arb.Instructions); in insert_mvp_mad_code() 209 vprog->arb.Instructions = newInst; in insert_mvp_mad_code() [all …]
|
D | program.c | 351 const GLuint origLen = prog->arb.NumInstructions; in _mesa_insert_instructions() 357 for (i = 0; i < prog->arb.NumInstructions; i++) { in _mesa_insert_instructions() 358 struct prog_instruction *inst = prog->arb.Instructions + i; in _mesa_insert_instructions() 373 _mesa_copy_instructions(newInst, prog->arb.Instructions, start); in _mesa_insert_instructions() 380 prog->arb.Instructions + start, in _mesa_insert_instructions() 384 ralloc_free(prog->arb.Instructions); in _mesa_insert_instructions() 387 prog->arb.Instructions = newInst; in _mesa_insert_instructions() 388 prog->arb.NumInstructions = newLen; in _mesa_insert_instructions() 401 const GLuint origLen = prog->arb.NumInstructions; in _mesa_delete_instructions() 407 for (i = 0; i < prog->arb.NumInstructions; i++) { in _mesa_delete_instructions() [all …]
|
D | prog_optimize.c | 169 for (i = prog->arb.NumInstructions - 1; i >= 0; i--) { in remove_instructions() 213 for (i = 0; i < prog->arb.NumInstructions; i++) { in replace_regs() 214 struct prog_instruction *inst = prog->arb.Instructions + i; in replace_regs() 254 calloc(prog->arb.NumInstructions, sizeof(GLboolean)); in _mesa_remove_dead_code_global() 257 for (i = 0; i < prog->arb.NumInstructions; i++) { in _mesa_remove_dead_code_global() 258 const struct prog_instruction *inst = prog->arb.Instructions + i; in _mesa_remove_dead_code_global() 300 for (i = 0; i < prog->arb.NumInstructions; i++) { in _mesa_remove_dead_code_global() 301 struct prog_instruction *inst = prog->arb.Instructions + i; in _mesa_remove_dead_code_global() 368 for (i = start; i < prog->arb.NumInstructions; i++) { in find_next_use() 369 const struct prog_instruction *inst = prog->arb.Instructions + i; in find_next_use() [all …]
|
D | program_parse.y | 362 state->prog->arb.NumInstructions++; 371 state->prog->arb.NumAluInstructions++; 376 state->prog->arb.NumTexInstructions++; 799 state->prog->arb.IndirectRegisterFiles |= (1 << $$.Base.File); 2289 if (state->prog->arb.NumTemporaries >= state->limits->MaxTemps) { 2295 s->temp_binding = state->prog->arb.NumTemporaries; 2296 state->prog->arb.NumTemporaries++; 2300 if (state->prog->arb.NumAddressRegs >= 2309 state->prog->arb.NumAddressRegs++; 2610 state->prog->arb.Instructions = [all …]
|
D | prog_print.c | 822 for (i = 0; i < prog->arb.NumInstructions; i++) { in _mesa_fprint_program_opt() 825 indent = _mesa_fprint_instruction_opt(f, prog->arb.Instructions + i, in _mesa_fprint_program_opt() 881 fprintf(f, "NumInstructions=%d\n", prog->arb.NumInstructions); in _mesa_fprint_program_parameters() 882 fprintf(f, "NumTemporaries=%d\n", prog->arb.NumTemporaries); in _mesa_fprint_program_parameters() 883 fprintf(f, "NumParameters=%d\n", prog->arb.NumParameters); in _mesa_fprint_program_parameters() 884 fprintf(f, "NumAttributes=%d\n", prog->arb.NumAttributes); in _mesa_fprint_program_parameters() 885 fprintf(f, "NumAddressRegs=%d\n", prog->arb.NumAddressRegs); in _mesa_fprint_program_parameters() 887 prog->arb.IndirectRegisterFiles, in _mesa_fprint_program_parameters() 888 binary(prog->arb.IndirectRegisterFiles)); in _mesa_fprint_program_parameters()
|
D | prog_execute.c | 380 const GLuint numInst = program->arb.NumInstructions; in _mesa_execute_program() 398 const struct prog_instruction *inst = program->arb.Instructions + pc; in _mesa_execute_program() 445 assert(program->arb.Instructions[inst->BranchTarget].Opcode in _mesa_execute_program() 450 assert(program->arb.Instructions[inst->BranchTarget].Opcode in _mesa_execute_program() 459 assert(program->arb.Instructions[inst->BranchTarget].Opcode in _mesa_execute_program() 466 assert(program->arb.Instructions[inst->BranchTarget].Opcode in _mesa_execute_program() 649 assert(program->arb.Instructions[inst->BranchTarget].Opcode in _mesa_execute_program() 651 program->arb.Instructions[inst->BranchTarget].Opcode in _mesa_execute_program() 673 assert(program->arb.Instructions[inst->BranchTarget].Opcode in _mesa_execute_program()
|
D | prog_opt_constant_fold.c | 131 for (i = 0; i < prog->arb.NumInstructions; i++) { in _mesa_constant_fold() 132 struct prog_instruction *const inst = &prog->arb.Instructions[i]; in _mesa_constant_fold()
|
/third_party/flutter/flutter/packages/flutter_localizations/lib/src/l10n/ |
D | README.md | 3 The `.arb` files in this directory contain localized values (primarily 15 ### Translations for one locale: .arb files 18 [Application Resource Bundle](https://code.google.com/p/arb/wiki/ApplicationResourceBundleSpecifica… 19 files, which have a `.arb` extension, to store localized translations 26 of the ARB format. Each .arb file contains a single JSON table that 30 for. For example `material_de.arb` contains German translations, and 31 `material_ar.arb` contains Arabic translations. Files that contain 33 suffix. For example `material_en_GB.arb` contains additional English 36 There is one language-specific .arb file for each supported locale. If 58 Each of the language-specific .arb files contains an entry for [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | arrayOfSubtypeIsAssignableToReadonlyArray.types | 19 declare var arb: B[]; 20 >arb : B[] 39 rrb = arb; // OK, Array<B> is assignable to ReadonlyArray<A> 40 >rrb = arb : B[] 42 >arb : B[] 44 rra = arb; 45 >rra = arb : B[] 47 >arb : B[]
|
D | arrayOfSubtypeIsAssignableToReadonlyArray.symbols | 22 declare var arb: B[]; 23 >arb : Symbol(arb, Decl(arrayOfSubtypeIsAssignableToReadonlyArray.ts, 4, 11)) 50 rrb = arb; // OK, Array<B> is assignable to ReadonlyArray<A> 52 >arb : Symbol(arb, Decl(arrayOfSubtypeIsAssignableToReadonlyArray.ts, 4, 11)) 54 rra = arb; 56 >arb : Symbol(arb, Decl(arrayOfSubtypeIsAssignableToReadonlyArray.ts, 4, 11))
|
D | arrayOfSubtypeIsAssignableToReadonlyArray.js | 6 declare var arb: B[]; 12 rrb = arb; // OK, Array<B> is assignable to ReadonlyArray<A> 13 rra = arb; 58 rrb = arb; // OK, Array<B> is assignable to ReadonlyArray<A> 59 rra = arb;
|
D | arrayOfSubtypeIsAssignableToReadonlyArray.errors.txt | 14 declare var arb: B[]; 20 rrb = arb; // OK, Array<B> is assignable to ReadonlyArray<A> 21 rra = arb;
|
/third_party/flutter/flutter/examples/stocks/lib/i18n/ |
D | regenerate.md | 11 `intl_messages.arb` from `lib/stock_strings.dart`: 15 The `intl_messages.arb` file is a JSON format map with one entry for 18 `stocks_en.arb` and `stocks_es.arb`. The `intl_messages.arb` wasn't 20 the other `.arb` files. 24 `stock_messages_<locale>.dart` for each `stocks_<locale>.arb` file and 28 --generated-file-prefix=stock_ --no-use-deferred-loading lib/*.dart lib/i18n/stocks_*.arb
|
/third_party/mesa3d/src/mesa/main/ |
D | arbprogram.c | 294 if (unlikely(index + count > prog->arb.MaxLocalParams)) { in get_local_param_pointer() 296 if (!prog->arb.MaxLocalParams) { in get_local_param_pointer() 305 if (!prog->arb.LocalParams) { in get_local_param_pointer() 306 prog->arb.LocalParams = rzalloc_array_size(prog, sizeof(float[4]), in get_local_param_pointer() 308 if (!prog->arb.LocalParams) { in get_local_param_pointer() 315 prog->arb.MaxLocalParams = max; in get_local_param_pointer() 319 if (index + count > prog->arb.MaxLocalParams) { in get_local_param_pointer() 325 *param = prog->arb.LocalParams[index]; in get_local_param_pointer() 887 *params = prog->arb.NumInstructions; in get_program_iv() 893 *params = prog->arb.NumNativeInstructions; in get_program_iv() [all …]
|
D | state.h | 98 ctx->VertexProgram.Current->arb.Instructions; in _mesa_arb_vertex_program_enabled() 126 ctx->FragmentProgram.Current->arb.Instructions; in _mesa_arb_fragment_program_enabled()
|
D | ffvertex_prog.c | 381 if ((GLuint) bit > p->program->arb.NumTemporaries) in get_temp() 382 p->program->arb.NumTemporaries = bit; in get_temp() 571 assert(p->program->arb.NumInstructions <= p->max_inst); in emit_op3fn() 573 if (p->program->arb.NumInstructions == p->max_inst) { in emit_op3fn() 587 _mesa_copy_instructions(newInst, p->program->arb.Instructions, in emit_op3fn() 588 p->program->arb.NumInstructions); in emit_op3fn() 590 ralloc_free(p->program->arb.Instructions); in emit_op3fn() 592 p->program->arb.Instructions = newInst; in emit_op3fn() 595 nr = p->program->arb.NumInstructions++; in emit_op3fn() 597 inst = &p->program->arb.Instructions[nr]; in emit_op3fn() [all …]
|
/third_party/typescript/tests/cases/compiler/ |
D | arrayOfSubtypeIsAssignableToReadonlyArray.ts | 5 declare var arb: B[]; variable 11 rrb = arb; // OK, Array<B> is assignable to ReadonlyArray<A> 12 rra = arb;
|
/third_party/flutter/flutter/dev/tools/localization/ |
D | encode_kn_arb_files.dart | 5 // This program replaces the material_kn.arb and cupertino_kn.arb 13 // This app needs to be run by hand when material_kn.arb or cupertino_kn.arb 81 final File materialArbFile = File(path.join(l10nPath, 'material_kn.arb')); 82 final File cupertinoArbFile = File(path.join(l10nPath, 'cupertino_kn.arb'));
|
D | gen_localizations.dart | 7 // the arb files. The returned value is a generated instance of a 11 // The *.arb files are in packages/flutter_localizations/lib/src/l10n. 13 // The arb (JSON) format files must contain a single map indexed by locale. 17 // The arb filenames are expected to have the form "material_(\w+)\.arb" or 18 // "cupertino_(\w+)\.arb" where the group following "_" identifies the language 19 // code and the country code, e.g. "material_en.arb" or "material_en_GB.arb". 22 // This app is typically run by hand when a module's .arb files have been 444 // cupertino_en.arb doesn't use x-flutter-type. 490 // filenames are assumed to end in "prefix_lc.arb" or "prefix_lc_cc.arb", where prefix 495 final RegExp materialFilenameRE = RegExp(r'material_(\w+)\.arb$'); [all …]
|
/third_party/flutter/flutter/packages/flutter/lib/src/cupertino/ |
D | localizations.dart | 112 // The global version uses the translated string from the arb file. 126 // The global version uses the translated string from the arb file. 130 // The global version uses the translated string from the arb file. 134 // The global version uses the translated string from the arb file. 138 // The global version uses the translated string from the arb file. 142 // The global version uses the translated string from the arb file. 146 // The global version uses the translated string from the arb file. 150 // The global version uses the translated string from the arb file. 186 // The global version uses the translated string from the arb file. 192 // The global version uses the translated string from the arb file. [all …]
|
/third_party/mesa3d/src/mesa/drivers/dri/r200/ |
D | r200_vertprog.c | 416 if (mesa_vp->arb.NumInstructions == 0) in r200_translate_vertex_program() 452 if (mesa_vp->arb.IsPositionInvariant && in r200_translate_vertex_program() 469 mesa_vp->arb.NumNativeInstructions = 0; in r200_translate_vertex_program() 471 mesa_vp->arb.NumNativeParameters = mesa_vp->Parameters->NumParameters; in r200_translate_vertex_program() 473 mesa_vp->arb.NumNativeParameters = 0; in r200_translate_vertex_program() 592 for (vpi = mesa_vp->arb.Instructions; vpi->Opcode != OPCODE_END; vpi++, o_inst++){ in r200_translate_vertex_program() 1072 if (mesa_vp->arb.NumNativeTemporaries < in r200_translate_vertex_program() 1073 (mesa_vp->arb.NumTemporaries + u_temp_used)) { in r200_translate_vertex_program() 1074 mesa_vp->arb.NumNativeTemporaries = in r200_translate_vertex_program() 1075 mesa_vp->arb.NumTemporaries + u_temp_used; in r200_translate_vertex_program() [all …]
|
/third_party/mesa3d/src/mesa/drivers/dri/i915/ |
D | i915_program.c | 520 p->FragProg.arb.NumNativeInstructions = 0; in i915_fini_program() 521 p->FragProg.arb.NumNativeAluInstructions = 0; in i915_fini_program() 522 p->FragProg.arb.NumNativeTexInstructions = 0; in i915_fini_program() 523 p->FragProg.arb.NumNativeTexIndirections = 0; in i915_fini_program() 526 p->FragProg.arb.NumNativeInstructions = (p->nr_alu_insn + in i915_fini_program() 529 p->FragProg.arb.NumNativeAluInstructions = p->nr_alu_insn; in i915_fini_program() 530 p->FragProg.arb.NumNativeTexInstructions = p->nr_tex_insn; in i915_fini_program() 531 p->FragProg.arb.NumNativeTexIndirections = p->nr_tex_indirect; in i915_fini_program()
|
/third_party/mesa3d/src/freedreno/ci/ |
D | freedreno-a530-fails.txt | 328 spec@arb_texture_buffer_object@formats (fs- arb),Fail 329 spec@arb_texture_buffer_object@formats (fs- arb)@GL_ALPHA16F_ARB,Fail 330 spec@arb_texture_buffer_object@formats (fs- arb)@GL_ALPHA32F_ARB,Fail 331 spec@arb_texture_buffer_object@formats (fs- arb)@GL_INTENSITY16F_ARB,Fail 332 spec@arb_texture_buffer_object@formats (fs- arb)@GL_INTENSITY32F_ARB,Fail 333 spec@arb_texture_buffer_object@formats (fs- arb)@GL_LUMINANCE16F_ARB,Fail 334 spec@arb_texture_buffer_object@formats (fs- arb)@GL_LUMINANCE32F_ARB,Fail 335 spec@arb_texture_buffer_object@formats (fs- arb)@GL_LUMINANCE8_ALPHA8,Fail 336 spec@arb_texture_buffer_object@formats (fs- arb)@GL_LUMINANCE_ALPHA16F_ARB,Fail 337 spec@arb_texture_buffer_object@formats (fs- arb)@GL_LUMINANCE_ALPHA32F_ARB,Fail [all …]
|
D | freedreno-a630-fails.txt | 200 spec@arb_texture_buffer_object@formats (fs- arb),Fail 201 spec@arb_texture_buffer_object@formats (fs- arb)@GL_ALPHA16F_ARB,Fail 202 spec@arb_texture_buffer_object@formats (fs- arb)@GL_ALPHA32F_ARB,Fail 203 spec@arb_texture_buffer_object@formats (fs- arb)@GL_INTENSITY16F_ARB,Fail 204 spec@arb_texture_buffer_object@formats (fs- arb)@GL_INTENSITY32F_ARB,Fail 205 spec@arb_texture_buffer_object@formats (fs- arb)@GL_LUMINANCE16F_ARB,Fail 206 spec@arb_texture_buffer_object@formats (fs- arb)@GL_LUMINANCE32F_ARB,Fail 207 spec@arb_texture_buffer_object@formats (fs- arb)@GL_LUMINANCE8_ALPHA8,Fail 208 spec@arb_texture_buffer_object@formats (fs- arb)@GL_LUMINANCE_ALPHA16F_ARB,Fail 209 spec@arb_texture_buffer_object@formats (fs- arb)@GL_LUMINANCE_ALPHA32F_ARB,Fail [all …]
|