Lines Matching refs:PyLong_BASE
54 return x_plus_mask < ((twodigits)PyLong_MASK) + PyLong_BASE;
2442 log((double)PyLong_BASE));
2445 if (next > PyLong_BASE) {
2536 assert(c < PyLong_BASE);
2560 assert(c < PyLong_BASE);
2822 digit is >= PyLong_BASE: the max value for q is PyLong_BASE+1, and
2841 /* normalize: shift w1 left so that its top digit is >= PyLong_BASE/2.
2896 if (r >= PyLong_BASE)
2899 assert(q <= PyLong_BASE);
2904 /* invariants: -PyLong_BASE <= -q <= zhi <= 0;
2905 -PyLong_BASE * q <= z < PyLong_BASE */
2926 assert(q < PyLong_BASE);
3040 dx = dx * PyLong_BASE + x_digits[--x_size];
4108 da = da * PyLong_BASE + a->ob_digit[--a_size];
4111 db = db * PyLong_BASE + b->ob_digit[--b_size];
4218 dx = dx * PyLong_BASE + x->ob_digit[--x_size];