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

References

tools/polly/lib/External/isl/isl_list_templ.c
  169 	if (!list)
  171 	if (first + n > list->n || first + n < first)
  172 		isl_die(list->ctx, isl_error_invalid,
  173 			"index out of bounds", return FN(LIST(EL),free)(list));
  175 		return list;
  176 	list = FN(LIST(EL),cow)(list);
  176 	list = FN(LIST(EL),cow)(list);
  177 	if (!list)
  180 		FN(EL,free)(list->p[first + i]);
  181 	for (i = first; i + n < list->n; ++i)
  182 		list->p[i] = list->p[i + n];
  182 		list->p[i] = list->p[i + n];
  183 	list->n -= n;
  184 	return list;