Lines Matching defs:pout
1618 in pout, and returning the remainder. pin and pout point at the LSD.
1619 It's OK for pin == pout on entry, which saves oodles of mallocs/frees in
1639 inplace_divrem1(digit *pout, digit *pin, Py_ssize_t size, digit n)
1650 pout[size] = quotient;
1717 digit *pout, *pin, rem, tenpow;
1770 base _PyLong_DECIMAL_BASE digits in pout, following Knuth (TAOCP,
1773 pout = scratch->ob_digit;
1778 twodigits z = (twodigits)pout[j] << PyLong_SHIFT | hi;
1780 pout[j] = (digit)(z - (twodigits)hi *
1784 pout[size++] = hi % _PyLong_DECIMAL_BASE;
1793 /* pout should have at least one digit, so that the case when a = 0
1796 pout[size++] = 0;
1801 rem = pout[size-1];
1842 /* pout[0] through pout[size-2] contribute exactly \
1845 rem = pout[i]; \
1851 /* pout[size-1]: always produce at least one decimal digit */ \
1852 rem = pout[i]; \