Home | History | Annotate | Download | only in dist

Lines Matching refs:PW

16 __isl_give isl_val *FN(PW,opt)(__isl_take PW *pw, int max)
21 if (!pw)
24 if (pw->n == 0) {
25 opt = isl_val_zero(FN(PW,get_ctx)(pw));
26 FN(PW,free)(pw);
30 opt = FN(EL,opt_on_domain)(FN(EL,copy)(pw->p[0].FIELD),
31 isl_set_copy(pw->p[0].set), max);
32 for (i = 1; i < pw->n; ++i) {
34 opt_i = FN(EL,opt_on_domain)(FN(EL,copy)(pw->p[i].FIELD),
35 isl_set_copy(pw->p[i].set), max);
42 FN(PW,free)(pw);
46 __isl_give isl_val *FN(PW,max)(__isl_take PW *pw)
48 return FN(PW,opt)(pw, 1);
51 __isl_give isl_val *FN(PW,min)(__isl_take PW *pw)
53 return FN(PW,opt)(pw, 0);