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

References

tools/polly/lib/External/isl/isl_sample.c
  157 	n_eq = tab->n_var - tab->n_col + tab->n_dead;
  199 	tab->n_zero = n_eq = tab->n_var - tab->n_col + tab->n_dead;
 1072 	if (tab_cone->n_col == tab_cone->n_dead) {
tools/polly/lib/External/isl/isl_tab.c
   72 	tab->n_col = n_var;
  128 					tab->n_row + n_new, off + tab->n_col);
  165 	if (tab->mat->n_col < off + tab->n_col + n_new) {
  169 				    tab->mat->n_row, off + tab->n_col + n_new);
  173 					    int, tab->n_col + n_new);
  252 	for (i = 0; i < tab->n_col; ++i)
  282 	dup->n_col = tab->n_col;
  282 	dup->n_col = tab->n_col;
  464 				tab1->n_col, tab2->n_col, off, r1, r2, d1, d2);
  464 				tab1->n_col, tab2->n_col, off, r1, r2, d1, d2);
  478 				tab1->n_row, tab1->n_col,
  492 				tab1->n_row, tab1->n_col,
  496 					tab1->n_col + tab2->n_col);
  496 					tab1->n_col + tab2->n_col);
  497 	if ((tab1->n_col + tab2->n_col) && !prod->col_var)
  497 	if ((tab1->n_col + tab2->n_col) && !prod->col_var)
  499 	for (i = 0; i < tab1->n_col; ++i) {
  503 	for (i = 0; i < tab2->n_col; ++i) {
  504 		int pos = i < d2 ? d1 + i : tab1->n_col + i;
  535 	prod->n_col = tab1->n_col + tab2->n_col;
  535 	prod->n_col = tab1->n_col + tab2->n_col;
  535 	prod->n_col = tab1->n_col + tab2->n_col;
  718 	for (j = tab->n_dead; j < tab->n_col; ++j) {
  757 	for (i = tab->n_dead; i < tab->n_col; ++i) {
  849 	u.col_var = isl_alloc_array(tab->mat->ctx, int, tab->n_col);
  850 	if (tab->n_col && !u.col_var)
  852 	for (i = 0; i < tab->n_col; ++i)
 1145 		for (j = 0; j < off - 1 + tab->n_col; ++j) {
 1151 		isl_seq_normalize(mat->ctx, mat->row[row], off + tab->n_col);
 1158 		for (j = 0; j < off - 1 + tab->n_col; ++j) {
 1169 			isl_seq_normalize(mat->ctx, mat->row[i], off + tab->n_col);
 1571 		if (col != tab->n_col - 1)
 1572 			swap_cols(tab, col, tab->n_col - 1);
 1573 		var_from_col(tab, tab->n_col - 1)->index = -1;
 1574 		tab->n_col--;
 1587 				    tab->n_col - tab->n_dead) != -1)
 1650 	for (j = tab->n_dead; j < tab->n_col; ++j) {
 1766 	isl_assert(tab->mat->ctx, tab->n_col < tab->mat->n_col, return -1);
 1771 	tab->var[r].index = tab->n_col;
 1778 	tab->col_var[tab->n_col] = r;
 1781 		isl_int_set_si(tab->mat->row[i][off + tab->n_col], 0);
 1783 	tab->n_col++;
 1840 	isl_seq_clr(row + 2, tab->M + tab->n_col);
 1854 			    1 + tab->M + tab->n_col);
 1861 	isl_seq_normalize(tab->mat->ctx, row, off + tab->n_col);
 1893 	if (col != tab->n_col - 1)
 1894 		swap_cols(tab, col, tab->n_col - 1);
 1895 	tab->n_col--;
 1983 	for (i = tab->n_dead; i < tab->n_col; ++i)
 1987 	isl_assert(tab->mat->ctx, i < tab->n_col, return -1);
 2015 					tab->n_col - tab->n_dead);
 2047 					tab->n_col - tab->n_dead) == -1;
 2077 			    1 + tab->n_col);
 2106 	isl_seq_clr(row + 1, 1 + tab->M + tab->n_col);
 2175 			    1 + tab->n_col);
 2501 	if (tab->n_dead == tab->n_col)
 2520 		if (tab->n_dead == tab->n_col)
 2723 			    tab->mat->row[var->index] + 1, 1 + tab->n_col);
 2726 		isl_seq_clr(row + 1, 1 + tab->n_col);
 2970 	if (tab->n_dead == tab->n_col)
 2981 	for (i = tab->n_dead; i < tab->n_col; ++i) {
 3169 	for (i = tab->n_dead; i < tab->n_col; ++i) {
 3190 		for (i = tab->n_dead; i < tab->n_col; ++i) {
 3224 					tab->n_col - tab->n_dead) == -1;
 3350 	n = tab->n_col - tab->n_dead;
 3793 	extra = isl_alloc_array(tab->mat->ctx, int, tab->n_col);
 3794 	if (tab->n_col && !extra)
 3796 	for (i = 0; i < tab->n_col; ++i) {
 3797 		for (j = 0; j < tab->n_col; ++j)
 3800 		if (j < tab->n_col)
 3804 	for (i = 0; i < tab->n_col && n_extra > 0; ++i) {
 3808 		for (j = 0; j < tab->n_col; ++j)
 3811 		if (j < tab->n_col)
 3948 					tab->n_col - tab->n_dead);
 3962 			tab->n_col - tab->n_dead - pos - 1);
 4123 	for (i = 0; i < tab->n_col; ++i) {
 4133 	tab->mat->n_col = 2 + tab->M + tab->n_col;
tools/polly/lib/External/isl/isl_tab_pip.c
 1037 			tab->mat->row[row][0], 1 + tab->M + tab->n_col);
 1049 			1 + tab->M + tab->n_col);
 1260 	int col = tab->n_col;
 1268 	for (j = tab->n_dead; j < tab->n_col; ++j) {
 1275 		if (col == tab->n_col)
 1338 	for (col = tab->n_dead; col < tab->n_col; ++col) {
 1388 	for (j = tab->n_dead; j < tab->n_col; ++j) {
 1420 		if (col >= tab->n_col) {
 1471 	for (i = tab->n_dead; i < tab->n_col; ++i) {
 1534 					tab->n_col - tab->n_dead) == -1;
 1545 	for (col = tab->n_dead; col < tab->n_col; ++col) {
 1719 	for (i = tab->n_dead; i < tab->n_col; ++i) {
 1835 	for (i = 0; i < tab->n_col; ++i)
 2228 	for (i = 0; i < tab->n_col; ++i) {
 2245 				off - 1 + tab->n_col);
 2992 	if (cgbr->cone->n_dead == cgbr->cone->n_col) {
 3099 	if (cgbr->cone && cgbr->cone->n_col != cgbr->cone->n_dead) {
 3156 	if (cgbr->cone && cgbr->cone->n_col != cgbr->cone->n_dead) {
 3711 	for (j = tab->n_dead; j < tab->n_col; ++j) {