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

References

tools/polly/lib/External/isl/isl_mat.c
 1246 	if (!mat)
 1248 	mat = isl_mat_cow(mat);
 1248 	mat = isl_mat_cow(mat);
 1249 	if (check_row_range(mat, i, 1) < 0 ||
 1250 	    check_row_range(mat, j, 1) < 0)
 1251 		return isl_mat_free(mat);
 1253 	t = mat->row[i];
 1254 	mat->row[i] = mat->row[j];
 1254 	mat->row[i] = mat->row[j];
 1255 	mat->row[j] = t;
 1256 	return mat;