Lines Matching refs:PyLong_BASE
2302 log((double)PyLong_BASE)); in PyLong_FromString()
2305 if (next > PyLong_BASE) { in PyLong_FromString()
2396 assert(c < PyLong_BASE); in PyLong_FromString()
2420 assert(c < PyLong_BASE); in PyLong_FromString()
2706 if (r >= PyLong_BASE) in x_divrem()
2709 assert(q <= PyLong_BASE); in x_divrem()
2736 assert(q < PyLong_BASE); in x_divrem()
2850 dx = dx * PyLong_BASE + x_digits[--x_size]; in _PyLong_Frexp()
3858 da = da * PyLong_BASE + a->ob_digit[--a_size]; in long_true_divide()
3861 db = db * PyLong_BASE + b->ob_digit[--b_size]; in long_true_divide()
3968 dx = dx * PyLong_BASE + x->ob_digit[--x_size]; in long_true_divide()