/third_party/mesa3d/src/compiler/nir/ |
D | nir_schedule.c | 617 nir_schedule_node *chosen = NULL; in nir_schedule_choose_instruction_fallback() local 626 if (!chosen || chosen->max_delay > n->max_delay) in nir_schedule_choose_instruction_fallback() 627 chosen = n; in nir_schedule_choose_instruction_fallback() 629 if (chosen) { in nir_schedule_choose_instruction_fallback() 632 nir_print_instr(chosen->instr, stderr); in nir_schedule_choose_instruction_fallback() 636 return chosen; in nir_schedule_choose_instruction_fallback() 641 if (!chosen || chosen->max_delay > n->max_delay) in nir_schedule_choose_instruction_fallback() 642 chosen = n; in nir_schedule_choose_instruction_fallback() 646 nir_print_instr(chosen->instr, stderr); in nir_schedule_choose_instruction_fallback() 650 return chosen; in nir_schedule_choose_instruction_fallback() [all …]
|
/third_party/mesa3d/src/freedreno/ir3/ |
D | ir3_postsched.c | 204 struct ir3_postsched_node *chosen = NULL; in choose_instr() local 212 if (!chosen || (chosen->max_delay < n->max_delay)) in choose_instr() 213 chosen = n; in choose_instr() 216 if (chosen) { in choose_instr() 217 di(chosen->instr, "prio: chose (meta)"); in choose_instr() 218 return chosen->instr; in choose_instr() 229 if (!chosen || (chosen->max_delay < n->max_delay)) in choose_instr() 230 chosen = n; in choose_instr() 233 if (chosen) { in choose_instr() 234 di(chosen->instr, "prio: chose (input)"); in choose_instr() [all …]
|
D | ir3_sched.c | 693 struct ir3_sched_node *chosen = NULL; in choose_instr_dec() local 735 if (!chosen || rank > chosen_rank || in choose_instr_dec() 736 (rank == chosen_rank && chosen->max_delay < n->max_delay)) { in choose_instr_dec() 737 chosen = n; in choose_instr_dec() 742 if (chosen) { in choose_instr_dec() 743 di(chosen->instr, "dec%s: chose (%s)", mode, dec_rank_name(chosen_rank)); in choose_instr_dec() 744 return chosen; in choose_instr_dec() 777 struct ir3_sched_node *chosen = NULL; in choose_instr_inc() local 808 if (!chosen || rank > chosen_rank || in choose_instr_inc() 810 chosen = n; in choose_instr_inc() [all …]
|
/third_party/mesa3d/src/gallium/drivers/vc4/ |
D | vc4_qir_schedule.c | 454 struct schedule_node *chosen = NULL; in choose_instruction() local 466 if (!chosen) { in choose_instruction() 467 chosen = n; in choose_instruction() 476 !locks_scoreboard(chosen->inst)) { in choose_instruction() 477 chosen = n; in choose_instruction() 480 locks_scoreboard(chosen->inst)) { in choose_instruction() 487 if (chosen->unblocked_time > state->time && in choose_instruction() 488 n->unblocked_time < chosen->unblocked_time) { in choose_instruction() 489 chosen = n; in choose_instruction() 492 n->unblocked_time > chosen->unblocked_time) { in choose_instruction() [all …]
|
D | vc4_qpu_schedule.c | 554 struct schedule_node *chosen = NULL; in choose_instruction_to_schedule() local 632 if (!chosen) { in choose_instruction_to_schedule() 633 chosen = n; in choose_instruction_to_schedule() 639 chosen = n; in choose_instruction_to_schedule() 645 if (n->delay > chosen->delay) { in choose_instruction_to_schedule() 646 chosen = n; in choose_instruction_to_schedule() 648 } else if (n->delay < chosen->delay) { in choose_instruction_to_schedule() 653 return chosen; in choose_instruction_to_schedule() 878 struct schedule_node *chosen = in schedule_instructions() local 887 uint64_t inst = chosen ? chosen->inst->inst : qpu_NOP(); in schedule_instructions() [all …]
|
/third_party/mesa3d/src/intel/compiler/ |
D | brw_schedule_instructions.cpp | 1585 schedule_node *chosen = NULL; in choose_instruction_to_schedule() local 1595 if (!chosen || in choose_instruction_to_schedule() 1596 exit_unblocked_time(n) < exit_unblocked_time(chosen) || in choose_instruction_to_schedule() 1597 (exit_unblocked_time(n) == exit_unblocked_time(chosen) && in choose_instruction_to_schedule() 1599 chosen = n; in choose_instruction_to_schedule() 1615 if (!chosen) { in choose_instruction_to_schedule() 1616 chosen = n; in choose_instruction_to_schedule() 1618 get_register_pressure_benefit(chosen->inst); in choose_instruction_to_schedule() 1629 chosen = n; in choose_instruction_to_schedule() 1646 if (n->cand_generation > chosen->cand_generation) { in choose_instruction_to_schedule() [all …]
|
/third_party/mesa3d/src/gallium/drivers/lima/ir/pp/ |
D | regalloc.c | 377 static bool ppir_regalloc_spill_reg(ppir_compiler *comp, ppir_reg *chosen) in ppir_regalloc_spill_reg() argument 383 if (dest && ppir_dest_get_reg(dest) == chosen) { in ppir_regalloc_spill_reg() 401 if (reg == chosen) { in ppir_regalloc_spill_reg() 479 ppir_reg *chosen = NULL; in ppir_regalloc_choose_spill_node() local 483 chosen = reg; in ppir_regalloc_choose_spill_node() 487 assert(chosen); in ppir_regalloc_choose_spill_node() 488 chosen->spilled = true; in ppir_regalloc_choose_spill_node() 489 chosen->is_head = true; /* store_temp unable to do swizzle */ in ppir_regalloc_choose_spill_node() 491 return chosen; in ppir_regalloc_choose_spill_node() 565 ppir_reg *chosen = ppir_regalloc_choose_spill_node(comp, g); in ppir_regalloc_prog_try() local [all …]
|
/third_party/mesa3d/src/panfrost/midgard/ |
D | midgard_schedule.c | 810 …midgard_instruction *chosen = mir_choose_instruction(instructions, liveness, worklist, count, &pre… in mir_choose_bundle() local 812 if (chosen && chosen->type == TAG_LOAD_STORE_4 && !(num_ldst % 2)) { in mir_choose_bundle() 815 predicate.exclude = chosen->dest; in mir_choose_bundle() 818 … chosen = mir_choose_instruction(instructions, liveness, worklist, count, &predicate); in mir_choose_bundle() 819 if (chosen) in mir_choose_bundle() 824 … chosen = mir_choose_instruction(instructions, liveness, worklist, count, &predicate); in mir_choose_bundle() 825 assert(chosen == NULL || chosen->type != TAG_LOAD_STORE_4); in mir_choose_bundle() 827 if (chosen) in mir_choose_bundle() 828 return chosen->type; in mir_choose_bundle() 833 if (chosen) in mir_choose_bundle() [all …]
|
/third_party/mesa3d/src/broadcom/compiler/ |
D | qpu_schedule.c | 1063 struct schedule_node *chosen = NULL; in choose_instruction_to_schedule() local 1234 if (!chosen) { in choose_instruction_to_schedule() 1235 chosen = n; in choose_instruction_to_schedule() 1241 chosen = n; in choose_instruction_to_schedule() 1247 if (n->delay > chosen->delay) { in choose_instruction_to_schedule() 1248 chosen = n; in choose_instruction_to_schedule() 1250 } else if (n->delay < chosen->delay) { in choose_instruction_to_schedule() 1258 if (!chosen && !prev_inst && skipped_insts_for_ldvary_pipelining) { in choose_instruction_to_schedule() 1264 if (chosen && chosen->inst->qpu.sig.ldvary) { in choose_instruction_to_schedule() 1273 return chosen; in choose_instruction_to_schedule() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/ |
D | fuzzer_pass_add_opphi_synonyms.cpp | 298 auto chosen = in MaybeFindSuitableEquivalenceClassRandomly() local 300 if (EquivalenceClassIsSuitableForBlock(*chosen, block_id, in MaybeFindSuitableEquivalenceClassRandomly() 302 return chosen; in MaybeFindSuitableEquivalenceClassRandomly()
|
/third_party/spirv-tools/source/fuzz/ |
D | fuzzer_pass_add_opphi_synonyms.cpp | 298 auto chosen = in MaybeFindSuitableEquivalenceClassRandomly() local 300 if (EquivalenceClassIsSuitableForBlock(*chosen, block_id, in MaybeFindSuitableEquivalenceClassRandomly() 302 return chosen; in MaybeFindSuitableEquivalenceClassRandomly()
|
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/ |
D | fuzzer_pass_add_opphi_synonyms.cpp | 298 auto chosen = in MaybeFindSuitableEquivalenceClassRandomly() local 300 if (EquivalenceClassIsSuitableForBlock(*chosen, block_id, in MaybeFindSuitableEquivalenceClassRandomly() 302 return chosen; in MaybeFindSuitableEquivalenceClassRandomly()
|
/third_party/openssl/doc/man7/ |
D | EVP_KDF-KRB5KDF.pod | 51 length for the chosen cipher or an error is returned. Moreover, the 53 Since the KRB5KDF output length depends on the chosen cipher, calling 56 The caller must allocate a buffer of the correct length for the chosen
|
/third_party/json/doc/mkdocs/docs/api/basic_json/ |
D | get.md | 34 This overloads is chosen if: 51 This overloads is chosen if: 57 If `json_serializer<ValueType>` has both overloads of `from_json()`, the latter one is chosen.
|
/third_party/opencl-headers/ |
D | README.md | 17 cmake -S . -B build -DCMAKE_INSTALL_PREFIX=/chosen/install/prefix 24 cmake path/to/opencl/app -DOpenCLHeaders_ROOT=/chosen/install/prefix
|
/third_party/ffmpeg/doc/ |
D | rate_distortion.txt | 26 lambda is a fixed value chosen as a tradeoff between quality and filesize 30 chosen quality measurement) at the desired (or lower) filesize.
|
/third_party/openGLES/extensions/QCOM/ |
D | QCOM_extended_get.txt | 184 returns parameters for texture level chosen with <texture>, <face> and 192 chosen with the <pname> argument is restored with <param> value 210 returns pointer to the buffer chosen with <target>.
|
D | QCOM_binning_control.txt | 81 efficient option should be chosen; NICEST, indicating that the highest 82 quality option should be chosen; and DONT_CARE, indicating no preference in
|
/third_party/skia/third_party/externals/opengl-registry/extensions/QCOM/ |
D | QCOM_extended_get.txt | 184 returns parameters for texture level chosen with <texture>, <face> and 192 chosen with the <pname> argument is restored with <param> value 210 returns pointer to the buffer chosen with <target>.
|
D | QCOM_binning_control.txt | 81 efficient option should be chosen; NICEST, indicating that the highest 82 quality option should be chosen; and DONT_CARE, indicating no preference in
|
/third_party/openssl/doc/internal/man3/ |
D | evp_keymgmt_newdata.pod | 46 (the name evp_keymgmt_freedata() was chosen to avoid a clash with 48 evp_keymgmt_newdata() was chosen for consistency)
|
/third_party/skia/third_party/externals/angle2/extensions/ |
D | ANGLE_yuv_internal_format.txt | 85 1. How was the new format list chosen? 89 chosen to be required. It is up to the implementations to extend support
|
/third_party/vk-gl-cts/external/vulkan-docs/src/appendices/ |
D | VK_EXT_depth_clamp_zero_one.adoc | 20 The particular behavior is chosen to match OpenGL to aid porting or
|
/third_party/rust/crates/tracing/.github/ISSUE_TEMPLATE/ |
D | feature_request.md | 33 their potential drawbacks? Why was the proposed solution chosen over these
|
/third_party/flutter/skia/site/ |
D | schedule.md | 8 On the branch date, a healthy level of Skia near HEAD is chosen. After this
|