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

References

tools/polly/lib/External/isl/imath/imath.c
 2345     w = (mp_word)*dat * (mp_word)*dat + (mp_word)*dct;
 2346     *dct = LOWER_HALF(w);
 2347     w = UPPER_HALF(w);
 2347     w = UPPER_HALF(w);
 2352       mp_word  u = w + (mp_word)*dct, ov = 0;
 2358       w = t + t;
 2361       if (ADD_WILL_OVERFLOW(w, u))
 2364       w += u;
 2366       *dct = LOWER_HALF(w);
 2367       w = UPPER_HALF(w);
 2367       w = UPPER_HALF(w);
 2369 	w += MP_DIGIT_MAX; /* MP_RADIX */
 2370 	++w;
 2374     w = w + *dct;
 2374     w = w + *dct;
 2375     *dct = (mp_digit)w;
 2376     while ((w = UPPER_HALF(w)) != 0) {
 2376     while ((w = UPPER_HALF(w)) != 0) {
 2377       ++dct; w = w + *dct;
 2377       ++dct; w = w + *dct;
 2378       *dct = LOWER_HALF(w);
 2381     assert(w == 0);