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

References

tools/polly/lib/External/isl/isl_pw_templ.c
 1250 	if (!pw)
 1252 	if (n == 0 && !isl_space_get_tuple_name(pw->dim, type))
 1253 		return pw;
 1257 	pw = FN(PW,cow)(pw);
 1257 	pw = FN(PW,cow)(pw);
 1258 	if (!pw)
 1260 	pw->dim = isl_space_drop_dims(pw->dim, type, first, n);
 1260 	pw->dim = isl_space_drop_dims(pw->dim, type, first, n);
 1261 	if (!pw->dim)
 1263 	for (i = 0; i < pw->n; ++i) {
 1264 		pw->p[i].set = isl_set_project_out(pw->p[i].set,
 1264 		pw->p[i].set = isl_set_project_out(pw->p[i].set,
 1266 		if (!pw->p[i].set)
 1268 		pw->p[i].FIELD = FN(EL,drop_dims)(pw->p[i].FIELD, type, first, n);
 1268 		pw->p[i].FIELD = FN(EL,drop_dims)(pw->p[i].FIELD, type, first, n);
 1269 		if (!pw->p[i].FIELD)
 1273 	return pw;
 1275 	FN(PW,free)(pw);