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

References

tools/polly/lib/External/isl/imath/imath.c
 2184   bot_size = (size_a + 1) / 2;
 2192       size_b > bot_size) {
 2196     mp_digit *a_top = da + bot_size;
 2197     mp_digit *b_top = db + bot_size;
 2199     mp_size  at_size = size_a - bot_size;
 2200     mp_size  bt_size = size_b - bot_size;
 2201     mp_size  buf_size = 2 * bot_size;
 2216     carry = s_uadd(da, a_top, t1, bot_size, at_size);      /* t1 = a1 + a0 */
 2217     t1[bot_size] = carry;
 2219     carry = s_uadd(db, b_top, t2, bot_size, bt_size);      /* t2 = b1 + b0 */
 2220     t2[bot_size] = carry;
 2222     (void) s_kmul(t1, t2, t3, bot_size + 1, bot_size + 1); /* t3 = t1 * t2 */
 2222     (void) s_kmul(t1, t2, t3, bot_size + 1, bot_size + 1); /* t3 = t1 * t2 */
 2229     (void) s_kmul(da, db, t1, bot_size, bot_size);     /* t1 = a0 * b0 */
 2229     (void) s_kmul(da, db, t1, bot_size, bot_size);     /* t1 = a0 * b0 */
 2238     carry = s_uadd(t3, dc + bot_size, dc + bot_size,
 2238     carry = s_uadd(t3, dc + bot_size, dc + bot_size,
 2242     carry = s_uadd(t2, dc + 2*bot_size, dc + 2*bot_size,
 2242     carry = s_uadd(t2, dc + 2*bot_size, dc + 2*bot_size,