Home
last modified time | relevance | path

Searched refs:proc_it (Results 1 – 12 of 12) sorted by relevance

/dports/cad/yosys/yosys-yosys-0.12/passes/proc/
H A Dproc_clean.cc215 for (auto &proc_it : mod->processes) { in execute() local
216 if (!design->selected(mod, proc_it.second)) in execute()
218 proc_clean(mod, proc_it.second, total_count, quiet); in execute()
219 if (proc_it.second->syncs.size() == 0 && proc_it.second->root_case.switches.size() == 0 && in execute()
220 proc_it.second->root_case.actions.size() == 0) { in execute()
222 log("Removing empty process `%s.%s'.\n", log_id(mod), proc_it.second->name.c_str()); in execute()
223 delme.push_back(proc_it.second); in execute()
H A Dproc_rmdead.cc153 for (auto &proc_it : mod->processes) { in execute() local
154 if (!design->selected(mod, proc_it.second)) in execute()
157 for (auto switch_it : proc_it.second->root_case.switches) in execute()
161 log_id(proc_it.first), log_id(mod)); in execute()
164 full_case_counter, log_id(proc_it.first), log_id(mod)); in execute()
H A Dproc_init.cc97 for (auto &proc_it : mod->processes) in execute() local
98 if (design->selected(mod, proc_it.second)) in execute()
99 proc_init(mod, sigmap, proc_it.second); in execute()
H A Dproc_prune.cc134 for (auto &proc_it : mod->processes) { in execute() local
135 if (!design->selected(mod, proc_it.second)) in execute()
137 worker.do_process(proc_it.second); in execute()
H A Dproc_memwr.cc113 for (auto &proc_it : module->processes) in execute() local
114 if (design->selected(module, proc_it.second)) in execute()
115 proc_memwr(module, proc_it.second, next_port_id); in execute()
H A Dproc_arst.cc294 for (auto &proc_it : mod->processes) { in execute() local
295 if (!design->selected(mod, proc_it.second)) in execute()
297 proc_arst(mod, proc_it.second, assign_map); in execute()
301 for (auto sync : proc_it.second->syncs) in execute()
315 proc_it.first.c_str(), log_signal(arst_sig), log_signal(arst_val)); in execute()
324 proc_it.second->syncs.push_back(sync); in execute()
H A Dproc_dlatch.cc463 for (auto &proc_it : module->processes) in execute() local
464 if (design->selected(module, proc_it.second)) in execute()
465 proc_dlatch(db, proc_it.second); in execute()
H A Dproc_mux.cc473 for (auto &proc_it : mod->processes) in execute() local
474 if (design->selected(mod, proc_it.second)) in execute()
475 proc_mux(mod, proc_it.second, ifxmode); in execute()
H A Dproc_dff.cc371 for (auto &proc_it : mod->processes) in execute() local
372 if (design->selected(mod, proc_it.second)) in execute()
373 proc_dff(mod, proc_it.second, ce); in execute()
/dports/cad/yosys/yosys-yosys-0.12/passes/cmds/
H A Dcheck.cc109 for (auto &proc_it : module->processes) in execute() local
111 std::vector<RTLIL::CaseRule*> all_cases = {&proc_it.second->root_case}; in execute()
118 log_signal(action.first), log_signal(action.second), log_id(proc_it.first))); in execute()
132 for (auto &sync : proc_it.second->syncs) { in execute()
140 log_signal(action.first), log_signal(action.second), log_id(proc_it.first))); in execute()
/dports/math/moab/fathomteam-moab-7bde9dfb84a8/src/parallel/
H A DParallelComm.cpp5547 for (ind = 0, proc_it = buffProcs.begin(); in exchange_ghost_cells()
5548 proc_it != buffProcs.end(); ++proc_it, ind++) { in exchange_ghost_cells()
5583 for (p = 0, proc_it = buffProcs.begin(); in exchange_ghost_cells()
5584 proc_it != buffProcs.end(); ++proc_it, p++) { in exchange_ghost_cells()
5785 for (p = 0, proc_it = buffProcs.begin(); in exchange_ghost_cells()
5786 proc_it != buffProcs.end(); ++proc_it, p++) { in exchange_ghost_cells()
6317 for (ind = 0, proc_it = buffProcs.begin(); in get_sent_ents()
6318 proc_it != buffProcs.end(); ++proc_it, ind++) { in get_sent_ents()
6352 proc_it != buffProcs.end(); ++proc_it, ind++) { in get_sent_ents()
6497 proc_it != pc->buffProcs.end(); ++proc_it, ind++) { in exchange_ghost_cells()
[all …]
/dports/biology/avida/avida-2.12.4-src/avida-core/source/main/
H A DcEnvironment.cc1635 tLWConstListIterator<cReactionProcess> proc_it(req_proc); in GetTaskProbability() local
1638 …while ( (cur_proc = proc_it.Next()) != NULL){ //Determine whether or not we need to test for plas… in GetTaskProbability()