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

References

tools/polly/lib/External/isl/isl_aff.c
 1273 	if (!aff)
 1276 	n = isl_local_space_dim(aff->ls, isl_dim_div);
 1277 	off = isl_local_space_offset(aff->ls, isl_dim_div);
 1279 	pos = isl_seq_last_non_zero(aff->v->el + 1 + off, n) + 1;
 1281 		return aff;
 1283 	aff = isl_aff_cow(aff);
 1283 	aff = isl_aff_cow(aff);
 1284 	if (!aff)
 1287 	aff->ls = isl_local_space_drop_dims(aff->ls, isl_dim_div, pos, n - pos);
 1287 	aff->ls = isl_local_space_drop_dims(aff->ls, isl_dim_div, pos, n - pos);
 1288 	aff->v = isl_vec_drop_els(aff->v, 1 + off + pos, n - pos);
 1288 	aff->v = isl_vec_drop_els(aff->v, 1 + off + pos, n - pos);
 1289 	if (!aff->ls || !aff->v)
 1289 	if (!aff->ls || !aff->v)
 1290 		return isl_aff_free(aff);
 1292 	return aff;