Home | History | Annotate | Download | only in fortran

Lines Matching defs:trip

1712   mpz_t trip;
1719 mpz_init (trip);
1750 /* Calculate the trip count of the loop. */
1751 mpz_sub (trip, end->value.integer, start->value.integer);
1752 mpz_add (trip, trip, step->value.integer);
1753 mpz_tdiv_q (trip, trip, step->value.integer);
1761 while (mpz_sgn (trip) > 0)
1767 mpz_sub_ui (trip, trip, 1);
1777 mpz_clear (trip);