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

Declarations

tools/polly/lib/External/isl/imath/imath.h
  143 mp_result mp_int_expt(mp_int a, mp_small b, mp_int c);         /* c = a^b */

References

tools/polly/lib/External/isl/imath/imath.c
 1577     if ((res = mp_int_expt(TEMP(1), b, TEMP(2))) != MP_OK)
 1585     if ((res = mp_int_expt(TEMP(1), b - 1, TEMP(3))) != MP_OK)
tools/polly/lib/External/isl/imath/imrat.c
  394   if ((res = mp_int_expt(MP_NUMER_P(a), b, MP_NUMER_P(c))) != MP_OK)
  397   return mp_int_expt(MP_DENOM_P(a), b, MP_DENOM_P(c));