HomeSort by: relevance | last modified time | path
    Searched refs:pw1 (Results 1 - 6 of 6) sorted by relevancy

  /src/external/mit/isl/dist/
isl_pw_add_disjoint_templ.c 49 __isl_give PW *FN(PW,add_disjoint)(__isl_take PW *pw1, __isl_take PW *pw2)
54 if (FN(PW,align_params_bin)(&pw1, &pw2) < 0)
57 if (pw1->size < pw1->n + pw2->n && pw1->n < pw2->n)
58 return FN(PW,add_disjoint)(pw2, pw1);
60 ctx = isl_space_get_ctx(pw1->dim);
61 if (!OPT_EQUAL_TYPES(pw1->, pw2->))
64 if (FN(PW,check_equal_space)(pw1, pw2) < 0)
67 if (FN(PW,IS_ZERO)(pw1)) {
    [all...]
isl_pw_sub_templ.c 13 __isl_give PW *FN(PW,sub)(__isl_take PW *pw1, __isl_take PW *pw2)
15 return FN(PW,add)(pw1, FN(PW,neg)(pw2));
isl_pw_union_opt.c 234 PW *pw1 = data1->pw; local
239 if (!pw1 || !pw2)
242 res = FN(PW,alloc_size)(isl_space_copy(pw1->dim), pw1->n + pw2->n);
245 while (i < pw1->n || j < pw2->n) {
250 if (i < pw1->n && j < pw2->n)
251 cmp = FN(EL,plain_cmp)(pw1->p[i].FIELD,
254 cmp = i < pw1->n ? -1 : 1;
258 el = FN(EL,copy)(pw1->p[i].FIELD);
267 el = FN(EL,copy)(pw1->p[i].FIELD)
    [all...]
isl_pw_templ.c 679 static __isl_give PW *FN(PW,union_add_)(__isl_take PW *pw1, __isl_take PW *pw2)
686 if (FN(PW,align_params_bin)(&pw1, &pw2) < 0)
689 ctx = isl_space_get_ctx(pw1->dim);
690 if (!OPT_EQUAL_TYPES(pw1->, pw2->))
693 if (FN(PW,check_equal_space)(pw1, pw2) < 0)
696 if (FN(PW,IS_ZERO)(pw1)) {
697 FN(PW,free)(pw1);
703 return pw1;
706 n = (pw1->n + 1) * (pw2->n + 1);
707 res = FN(PW,alloc_size)(isl_space_copy(pw1->dim
    [all...]
isl_fold.c 1116 __isl_take isl_pw_qpolynomial_fold *pw1,
1123 if (!pw1 || !pw2)
1126 isl_assert(pw1->dim->ctx, isl_space_is_equal(pw1->dim, pw2->dim), goto error);
1128 if (isl_pw_qpolynomial_fold_is_zero(pw1)) {
1129 isl_pw_qpolynomial_fold_free(pw1);
1135 return pw1;
1138 if (pw1->type != pw2->type)
1139 isl_die(pw1->dim->ctx, isl_error_invalid,
1142 n = (pw1->n + 1) * (pw2->n + 1)
    [all...]
  /src/external/bsd/libbind/dist/irs/
irpmarshall.c 2249 struct passwd pw1; local
2252 pw = &pw1;

Completed in 20 milliseconds