Lines Matching defs:b_size
3986 Py_ssize_t a_size, b_size, shift, extra_bits, diff, x_size, x_bits;
4084 b_size = Py_ABS(Py_SIZE(b));
4086 if (b_size == 0) {
4101 b_is_small = b_size <= MANT_DIG_DIGITS ||
4102 (b_size == MANT_DIG_DIGITS+1 &&
4109 db = b->ob_digit[--b_size];
4110 while (b_size > 0)
4111 db = db * PyLong_BASE + b->ob_digit[--b_size];
4117 diff = a_size - b_size;
4126 bit_length_digit(b->ob_digit[b_size - 1]);
4182 if (b_size == 1) {