Home
last modified time | relevance | path

Searched refs:new_prod (Results 1 – 6 of 6) sorted by relevance

/dports/audio/festival/speech_tools/grammar/wfst/
H A Drgcompile.cc134 LISP current, start_state, remainder, set, new_prod; in build_from_rg() local
208 new_prod = prod_join(car(p),remainder); in build_from_rg()
209 ns = production_index(new_prod,index,p_num_states); in build_from_rg()
215 if (new_prod == NIL) in build_from_rg()
220 agenda = cons(cons(flocons(ns),new_prod),agenda); in build_from_rg()
/dports/games/openttd/openttd-12.1/src/
H A Dindustry_cmd.cpp2739 int old_prod, new_prod, percent; in ChangeIndustryProduction() local
2743 new_prod = old_prod = i->production_rate[j]; in ChangeIndustryProduction()
2758 new_prod += mult * (std::max(((RandomRange(50) + 10) * old_prod) >> 8, 1U)); in ChangeIndustryProduction()
2762 new_prod = Clamp(new_prod, 1, 255); in ChangeIndustryProduction()
2764 new_prod = Clamp(new_prod, 0, 16); in ChangeIndustryProduction()
2768 if ((i->ctlflags & INDCTL_NO_PRODUCTION_DECREASE) && new_prod < old_prod) continue; in ChangeIndustryProduction()
2769 if ((i->ctlflags & INDCTL_NO_PRODUCTION_INCREASE) && new_prod > old_prod) continue; in ChangeIndustryProduction()
2772 if (new_prod == old_prod && old_prod > 1) { in ChangeIndustryProduction()
2777 percent = (old_prod == 0) ? 100 : (new_prod * 100 / old_prod - 100); in ChangeIndustryProduction()
2778 i->production_rate[j] = new_prod; in ChangeIndustryProduction()
[all …]
H A Dindustry_gui.cpp1048 …int new_prod = i->production_rate[line - IL_RATE1] == 0 ? 1 : i->production_rate[line - IL_RATE1] … in OnClick() local
1049 i->production_rate[line - IL_RATE1] = std::min<uint>(new_prod, 255); in OnClick()
/dports/java/jasmin/jasmin-2.4/src/java_cup/
H A Dproduction.java585 production new_prod; in remove_embedded_actions() local
595 new_prod = new action_production(this, new_nt, null, 0, in remove_embedded_actions()
/dports/math/cvc3/cvc3-2.4.1/src/theory_bitvector/
H A Dbitvector_theorem_producer.cpp4785 Expr new_prod; in canonBVMult() local
4815 if (!new_prod.isNull()) { in canonBVMult()
4817 new_prod = d_theoryBitvector->newBVMultExpr( bv_size, new_prod, no_minus_kid[1]); in canonBVMult()
4821 new_prod = no_minus_kid[1]; in canonBVMult()
4825 if (!new_prod.isNull()) { in canonBVMult()
4827 new_prod = d_theoryBitvector->newBVMultExpr( bv_size, new_prod, no_minus_kid); in canonBVMult()
4831 new_prod = no_minus_kid; in canonBVMult()
4844 if (!new_prod.isNull()) { in canonBVMult()
4846 new_prod = d_theoryBitvector->newBVMultExpr( bv_size, new_prod, no_minus_kid); in canonBVMult()
4850 new_prod = no_minus_kid; in canonBVMult()
[all …]
/dports/science/py-pymol/pymol-open-source-2.4.0/modules/pmg_tk/startup/
H A Dapbs_tools.py1337 new_prod = new_gp[0]*new_gp[1]*new_gp[2]
1339 if new_prod <= max_grid_points: