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

References

tools/polly/lib/External/isl/isl_local_space.c
 1038 		return ls;
 1039 	ls = isl_local_space_cow(ls);
 1039 	ls = isl_local_space_cow(ls);
 1040 	if (!ls)
 1042 	ls->div = isl_mat_cow(ls->div);
 1042 	ls->div = isl_mat_cow(ls->div);
 1043 	if (!ls->div)
 1044 		return isl_local_space_free(ls);
 1046 	if (first + n > ls->div->n_row)
 1047 		isl_die(isl_local_space_get_ctx(ls), isl_error_invalid,
 1048 			"index out of bounds", return isl_local_space_free(ls));
 1050 	pos += isl_local_space_offset(ls, type);
 1054 		if (isl_int_is_zero(ls->div->row[i][1 + pos]))
 1056 		isl_seq_substitute(ls->div->row[i], pos, subs,
 1057 			ls->div->n_col, subs_len, v);
 1058 		normalize_div(ls, i);
 1062 	return ls;