Home | History | Annotate | Download | only in dist

Lines Matching refs:PW

13 __isl_give PW *FN(PW,scale)(__isl_take PW *pw, isl_int v)
19 return pw;
20 if (pw && DEFAULT_IS_ZERO && isl_int_is_zero(v)) {
21 PW *zero;
22 isl_space *space = FN(PW,get_space)(pw);
23 zero = FN(PW,ZERO)(space OPT_TYPE_ARG(pw->));
24 FN(PW,free)(pw);
28 pw = FN(PW,negate_type)(pw);
30 n = FN(PW,n_piece)(pw);
32 return FN(PW,free)(pw);
36 el = FN(PW,take_base_at)(pw, i);
38 pw = FN(PW,restore_base_at)(pw, i, el);
41 return pw;