Lines Matching defs:stop
1526 /* sum_exact(ps, hi) from the top, stop when the sum becomes
1953 * range(start, stop) for given start and stop. It's used to compute the
1970 /* factorial_partial_product: Compute product(range(start, stop, 2)) using
1971 * divide and conquer. Assumes start and stop are odd and stop > start.
1972 * max_bits must be >= bit_length(stop - 2). */
1975 factorial_partial_product(unsigned long start, unsigned long stop,
1992 * We know that stop - 2 is the largest number to be multiplied. From
1994 * bit_length(stop - 2)
1997 num_operands = (stop - start) / 2;
2003 for (total = start, j = start + 2; j < stop; j += 2)
2008 /* find midpoint of range(start, stop), rounded up to next odd number. */
2014 right = factorial_partial_product(midpoint, stop, max_bits);