Lines Matching refs:PyLong_BASE
46 return x_plus_mask < ((twodigits)PyLong_MASK) + PyLong_BASE; in is_medium_int()
2758 log((double)PyLong_BASE)); in long_from_non_binary_base()
2761 if (next > PyLong_BASE) { in long_from_non_binary_base()
2818 assert(c < PyLong_BASE); in long_from_non_binary_base()
2842 assert(c < PyLong_BASE); in long_from_non_binary_base()
3346 if (r >= PyLong_BASE) in x_divrem()
3349 assert(q <= PyLong_BASE); in x_divrem()
3376 assert(q < PyLong_BASE); in x_divrem()
3490 dx = dx * PyLong_BASE + x_digits[--x_size]; in _PyLong_Frexp()
4625 da = da * PyLong_BASE + a->long_value.ob_digit[--a_size]; in long_true_divide()
4628 db = db * PyLong_BASE + b->long_value.ob_digit[--b_size]; in long_true_divide()
4734 dx = dx * PyLong_BASE + x->long_value.ob_digit[--x_size]; in long_true_divide()