/third_party/mesa3d/src/compiler/nir/ |
H A 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 in nir_schedule_choose_instruction_fallback() 663 nir_schedule_node *chosen = NULL; nir_schedule_choose_instruction_csp() local 706 nir_schedule_node *chosen = NULL; nir_schedule_choose_instruction_csr() local 982 nir_schedule_node *chosen; nir_schedule_instructions() local [all...] |
/third_party/mesa3d/src/freedreno/ir3/ |
H A 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 in choose_instr() [all...] |
H A 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 in choose_instr_inc() 830 struct ir3_sched_node *chosen = NULL; choose_instr_prio() local 879 struct ir3_sched_node *chosen; choose_instr() local [all...] |
/third_party/mesa3d/src/gallium/drivers/vc4/ |
H A 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() 484 /* If we would block on the previously chosen node, but would 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 in choose_instruction() 626 struct schedule_node *chosen = choose_instruction(state); schedule_instructions() local [all...] |
H A 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 in schedule_instructions() [all...] |
/third_party/mesa3d/src/intel/compiler/ |
H A D | brw_schedule_instructions.cpp | 1585 schedule_node *chosen = NULL; 1595 if (!chosen || 1596 exit_unblocked_time(n) < exit_unblocked_time(chosen) || 1597 (exit_unblocked_time(n) == exit_unblocked_time(chosen) && 1599 chosen = n; 1615 if (!chosen) { 1616 chosen = n; 1618 get_register_pressure_benefit(chosen->inst); 1629 chosen = n; 1646 if (n->cand_generation > chosen [all...] |
/third_party/mesa3d/src/gallium/drivers/lima/ir/pp/ |
H A 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() 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 in ppir_regalloc_prog_try() local [all...] |
/third_party/mesa3d/src/broadcom/compiler/ |
H A 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 in choose_instruction_to_schedule() 2180 struct schedule_node *chosen = schedule_instructions() local [all...] |
/third_party/mesa3d/src/panfrost/midgard/ |
H A D | midgard_schedule.c | 351 /* True if we want to pop off the chosen instruction */ 810 midgard_instruction *chosen = mir_choose_instruction(instructions, liveness, worklist, count, &predicate); 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 in mir_choose_bundle() [all...] |
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/ |
H A D | fuzzer_pass_add_opphi_synonyms.cpp | 74 // If a set was not already chosen, choose one with at least one available in Apply() 101 "equivalence class was chosen among suitable ones."); in Apply() 112 // Add this id to the set of ids chosen. in Apply() 115 // Add the pair (predecessor, chosen id) to the map. in Apply() 122 // - the same id has been chosen by all the predecessors in Apply() 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/swiftshader/third_party/SPIRV-Tools/source/fuzz/ |
H A D | fuzzer_pass_add_opphi_synonyms.cpp | 74 // If a set was not already chosen, choose one with at least one available in Apply() 101 "equivalence class was chosen among suitable ones."); in Apply() 112 // Add this id to the set of ids chosen. in Apply() 115 // Add the pair (predecessor, chosen id) to the map. in Apply() 122 // - the same id has been chosen by all the predecessors in Apply() 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/ |
H A D | fuzzer_pass_add_opphi_synonyms.cpp | 74 // If a set was not already chosen, choose one with at least one available in Apply() 101 "equivalence class was chosen among suitable ones."); in Apply() 112 // Add this id to the set of ids chosen. in Apply() 115 // Add the pair (predecessor, chosen id) to the map. in Apply() 122 // - the same id has been chosen by all the predecessors in Apply() 298 auto chosen = in MaybeFindSuitableEquivalenceClassRandomly() local 300 if (EquivalenceClassIsSuitableForBlock(*chosen, block_id, in MaybeFindSuitableEquivalenceClassRandomly() 302 return chosen; in MaybeFindSuitableEquivalenceClassRandomly()
|
/third_party/rust/crates/aho-corasick/src/ |
H A D | error.rs | 18 /// use of a state ID that overflows the chosen state ID representation. 28 /// chosen state ID representation. 77 maximum ID for the chosen representation is {}", in fmt() 93 represent at least a state ID of {}, but the chosen \ in fmt()
|
/third_party/curl/lib/ |
H A D | url.c | 928 struct connectdata *chosen = NULL; in ConnectionExists() local 1236 chosen = check; in ConnectionExists() 1269 chosen = check; in ConnectionExists() 1310 chosen = check; in ConnectionExists() 1314 if(chosen) { in ConnectionExists() 1316 Curl_attach_connection(data, chosen); in ConnectionExists() 1318 *usethis = chosen; in ConnectionExists()
|
/third_party/ffmpeg/tests/fate/ |
H A D | matroska.mak | 72 # The metadata_header_padding has been chosen so that three attempts
|
/third_party/skia/third_party/externals/microhttpd/doc/ |
H A D | texinfo.tex | 5117 % below is chosen so that the gutter has the same value (well, +-<1pt)
|
/third_party/rust/crates/memchr/bench/data/code/ |
H A D | rust-library.rs | [all...] |