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
 1209 	if (!pw)
 1211 	if (n == 0 && !isl_space_get_tuple_name(pw->dim, type))
 1212 		return pw;
 1216 	pw = FN(PW,cow)(pw);
 1216 	pw = FN(PW,cow)(pw);
 1217 	if (!pw)
 1219 	pw->dim = isl_space_drop_dims(pw->dim, type, first, n);
 1219 	pw->dim = isl_space_drop_dims(pw->dim, type, first, n);
 1220 	if (!pw->dim)
 1222 	for (i = 0; i < pw->n; ++i) {
 1223 		pw->p[i].FIELD = FN(EL,drop_dims)(pw->p[i].FIELD, type, first, n);
 1223 		pw->p[i].FIELD = FN(EL,drop_dims)(pw->p[i].FIELD, type, first, n);
 1224 		if (!pw->p[i].FIELD)
 1228 		pw->p[i].set = isl_set_drop(pw->p[i].set, set_type, first, n);
 1228 		pw->p[i].set = isl_set_drop(pw->p[i].set, set_type, first, n);
 1229 		if (!pw->p[i].set)
 1233 	return pw;
 1235 	FN(PW,free)(pw);