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

References

tools/polly/lib/External/isl/imath/imath.c
 1511   if ((res = mp_int_init(&lcm)) != MP_OK)
 1512     return res;
 1513   if ((res = mp_int_gcd(a, b, &lcm)) != MP_OK)
 1515   if ((res = mp_int_div(a, &lcm, &lcm, NULL)) != MP_OK)
 1517   if ((res = mp_int_mul(&lcm, b, &lcm)) != MP_OK)
 1520   res = mp_int_copy(&lcm, c);
 1525   return res;