Lines Matching refs:pin
1537 /* Divide long pin, w/ size digits, by non-zero digit n, storing quotient
1538 in pout, and returning the remainder. pin and pout point at the LSD.
1539 It's OK for pin == pout on entry, which saves oodles of mallocs/frees in
1544 inplace_divrem1(digit *pout, digit *pin, Py_ssize_t size, digit n)
1549 pin += size;
1553 rem = (rem << PyLong_SHIFT) | *--pin;
1592 digit *pout, *pin, rem, tenpow;
1627 /* convert array of base _PyLong_BASE digits in pin to an array of
1630 pin = a->ob_digit;
1634 digit hi = pin[i];