Home | History | Annotate | Download | only in dist

Lines Matching defs:LIST

1430 /* Add the base expression held by "entry" to "list".
1435 LIST(PART) **list = user;
1437 *list = FN(LIST(PART),add)(*list, FN(PART,copy)(pw));
1438 if (!*list)
1444 /* Return a list containing all the base expressions in "u".
1446 * First construct a list of the appropriate size and
1449 __isl_give LIST(PART) *FN(FN(UNION,get),LIST(BASE))(__isl_keep UNION *u)
1452 LIST(PART) *list;
1459 list = FN(LIST(PART),alloc)(FN(UNION,get_ctx(u)), n);
1460 if (FN(UNION,foreach_inplace)(u, &FN(UNION,add_to_list), &list) < 0)
1461 return FN(LIST(PART),free)(list);
1463 return list;