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

References

tools/polly/lib/External/isl/imath/imath.c
  639   CHECK(a != NULL && b != NULL && c != NULL);
  641   ua = MP_USED(a); ub = MP_USED(b); uc = MP_USED(c);
  648     if (!s_pad(c, max))
  651     carry = s_uadd(MP_DIGITS(a), MP_DIGITS(b), MP_DIGITS(c), ua, ub);
  655       if (!s_pad(c, max + 1))
  658       c->digits[max] = carry;
  662     MP_USED(c) = uc;
  663     MP_SIGN(c) = MP_SIGN(a);
  672     if (!s_pad(c, max))
  685     s_usub(MP_DIGITS(x), MP_DIGITS(y), MP_DIGITS(c), MP_USED(x), MP_USED(y));
  686     MP_USED(c) = MP_USED(x);
  687     CLAMP(c);
  689     MP_SIGN(c) = osign;