reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/polly/lib/External/isl/isl_tab.c
  154 	unsigned off = 2 + tab->M;
  156 	if (tab->max_var < tab->n_var + n_new) {
  156 	if (tab->max_var < tab->n_var + n_new) {
  157 		var = isl_realloc_array(tab->mat->ctx, tab->var,
  157 		var = isl_realloc_array(tab->mat->ctx, tab->var,
  158 				    struct isl_tab_var, tab->n_var + n_new);
  161 		tab->var = var;
  162 		tab->max_var = tab->n_var + n_new;
  162 		tab->max_var = tab->n_var + n_new;
  165 	if (tab->mat->n_col < off + tab->n_col + n_new) {
  165 	if (tab->mat->n_col < off + tab->n_col + n_new) {
  168 		tab->mat = isl_mat_extend(tab->mat,
  168 		tab->mat = isl_mat_extend(tab->mat,
  169 				    tab->mat->n_row, off + tab->n_col + n_new);
  169 				    tab->mat->n_row, off + tab->n_col + n_new);
  170 		if (!tab->mat)
  172 		p = isl_realloc_array(tab->mat->ctx, tab->col_var,
  172 		p = isl_realloc_array(tab->mat->ctx, tab->col_var,
  173 					    int, tab->n_col + n_new);
  176 		tab->col_var = p;