Lines Matching refs:PyLong_BASE
319 if (ival < PyLong_BASE) in PyLong_FromUnsignedLong()
1124 if (ival < PyLong_BASE) in PyLong_FromUnsignedLongLong()
1192 if (ival < PyLong_BASE) in PyLong_FromSize_t()
2288 log((double)PyLong_BASE)); in PyLong_FromString()
2291 if (next > PyLong_BASE) { in PyLong_FromString()
2371 assert(c < PyLong_BASE); in PyLong_FromString()
2395 assert(c < PyLong_BASE); in PyLong_FromString()
2691 if (r >= PyLong_BASE) in x_divrem()
2694 assert(q <= PyLong_BASE); in x_divrem()
2721 assert(q < PyLong_BASE); in x_divrem()
2836 dx = dx * PyLong_BASE + x_digits[--x_size]; in _PyLong_Frexp()
3849 da = da * PyLong_BASE + a->ob_digit[--a_size]; in long_true_divide()
3852 db = db * PyLong_BASE + b->ob_digit[--b_size]; in long_true_divide()
3959 dx = dx * PyLong_BASE + x->ob_digit[--x_size]; in long_true_divide()