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

References

tools/polly/lib/External/isl/isl_mat.c
 1504 		return mat;
 1506 	mat = isl_mat_cow(mat);
 1506 	mat = isl_mat_cow(mat);
 1507 	if (check_col_range(mat, col, n) < 0)
 1508 		return isl_mat_free(mat);
 1510 	if (col != mat->n_col-n) {
 1511 		for (r = 0; r < mat->n_row; ++r)
 1512 			isl_seq_cpy(mat->row[r]+col, mat->row[r]+col+n,
 1512 			isl_seq_cpy(mat->row[r]+col, mat->row[r]+col+n,
 1513 					mat->n_col - col - n);
 1515 	mat->n_col -= n;
 1516 	return mat;