Searched refs:n_new (Results 1 - 4 of 4) sorted by relevance

/haiku-buildtools/gcc/gcc/
H A Dcfgloopanal.c393 estimate_reg_pressure_cost (unsigned n_new, unsigned n_old, bool speed, argument
397 unsigned regs_needed = n_new + n_old;
413 cost = target_reg_cost [speed] * n_new;
417 cost = target_spill_cost [speed] * n_new;
H A Ddwarf2cfi.c2140 size_t i, n_old, n_new, n_max;
2153 n_new = vec_safe_length (new_row->reg_save);
2154 n_max = MAX (n_old, n_new);
2162 if (i < n_new)
2137 size_t i, n_old, n_new, n_max; local
/haiku-buildtools/isl/
H A Disl_tab.h207 struct isl_tab *isl_tab_extend(struct isl_tab *tab, unsigned n_new) WARN_UNUSED;
273 int isl_tab_extend_cons(struct isl_tab *tab, unsigned n_new) WARN_UNUSED;
275 int isl_tab_extend_vars(struct isl_tab *tab, unsigned n_new) WARN_UNUSED;
H A Disl_tab.c97 int isl_tab_extend_cons(struct isl_tab *tab, unsigned n_new) argument
106 if (tab->max_con < tab->n_con + n_new) {
110 struct isl_tab_var, tab->max_con + n_new);
114 tab->max_con += n_new;
116 if (tab->mat->n_row < tab->n_row + n_new) {
120 tab->n_row + n_new, off + tab->n_col);
140 /* Make room for at least n_new extra variables.
143 int isl_tab_extend_vars(struct isl_tab *tab, unsigned n_new) argument
148 if (tab->max_var < tab->n_var + n_new) {
150 struct isl_tab_var, tab->n_var + n_new);
174 isl_tab_extend(struct isl_tab *tab, unsigned n_new) argument
[all...]

Completed in 228 milliseconds