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

References

tools/polly/lib/External/ppcg/hybrid.c
   79 	bounds = isl_alloc_type(ctx, struct ppcg_ht_bounds);
   80 	if (!bounds)
   82 	bounds->upper = isl_val_nan(ctx);
   83 	bounds->lower = isl_multi_val_zero(space);
   84 	n = isl_multi_val_dim(bounds->lower, isl_dim_set);
   86 		isl_val *v = isl_val_copy(bounds->upper);
   87 		bounds->lower = isl_multi_val_set_val(bounds->lower, i, v);
   87 		bounds->lower = isl_multi_val_set_val(bounds->lower, i, v);
   90 	if (!bounds->lower || !bounds->upper)
   90 	if (!bounds->lower || !bounds->upper)
   91 		return ppcg_ht_bounds_free(bounds);
   93 	return bounds;