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

References

tools/polly/lib/External/isl/basis_reduction_tab.c
  158 	lp->row = isl_vec_alloc(lp->ctx, 1 + 2 * lp->dim);
  159 	if (!lp->row)
  161 	lp->tab = gbr_tab(tab, lp->row);
  186 	isl_int_set_si(lp->row->el[0], 0);
  187 	isl_seq_cpy(lp->row->el + 1, lp->obj, lp->dim);
  188 	isl_seq_neg(lp->row->el + 1 + lp->dim, lp->obj, lp->dim);
  191 	res = isl_tab_min(lp->tab, lp->row->el, lp->ctx->one,
  224 	isl_int_set_si(lp->row->el[0], 0);
  225 	isl_seq_cpy(lp->row->el + 1, row, lp->dim);
  226 	isl_seq_clr(lp->row->el + 1 + lp->dim, lp->dim);
  227 	res = isl_tab_min(lp->tab, lp->row->el, lp->ctx->one,
  232 	isl_int_neg(lp->row->el[0], lp->tmp);
  233 	if (isl_tab_add_eq(lp->tab, lp->row->el) < 0)
  236 	isl_seq_cpy(lp->row->el + 1 + lp->dim, row, lp->dim);
  237 	isl_seq_clr(lp->row->el + 1, lp->dim);
  238 	if (isl_tab_add_eq(lp->tab, lp->row->el) < 0)
  261 	isl_vec_free(lp->row);
  272 	isl_int_set_si(lp->row->el[0], 0);
  273 	isl_seq_cpy(lp->row->el + 1, row, lp->dim);
  274 	isl_seq_neg(lp->row->el + 1 + lp->dim, row, lp->dim);
  276 	if (isl_tab_add_valid_eq(lp->tab, lp->row->el) < 0)