Lines Matching refs:PyLong_BASE
1870 log((double)PyLong_BASE)); in PyLong_FromString()
1873 if (next > PyLong_BASE) in PyLong_FromString()
1915 assert(c < PyLong_BASE); in PyLong_FromString()
1938 assert(c < PyLong_BASE); in PyLong_FromString()
2158 if (r >= PyLong_BASE) in x_divrem()
2161 assert(q <= PyLong_BASE); in x_divrem()
2188 assert(q < PyLong_BASE); in x_divrem()
2304 dx = dx * PyLong_BASE + x_digits[--x_size]; in _PyLong_Frexp()
3215 da = da * PyLong_BASE + a->ob_digit[--a_size]; in long_true_divide()
3218 db = db * PyLong_BASE + b->ob_digit[--b_size]; in long_true_divide()
3325 dx = dx * PyLong_BASE + x->ob_digit[--x_size]; in long_true_divide()