BITSPERDIG 77 bignum.c #define BIGRAD ((BDIGIT_DBL)1 << BITSPERDIG) BITSPERDIG 80 bignum.c #define BIGUP(x) LSHIFTX(((x) + (BDIGIT_DBL)0), BITSPERDIG) BITSPERDIG 81 bignum.c #define BIGDN(x) RSHIFT((x),BITSPERDIG) BITSPERDIG 403 bignum.c assert(0 <= shift && shift < BITSPERDIG); BITSPERDIG 419 bignum.c assert(0 <= shift && shift < BITSPERDIG); BITSPERDIG 590 bignum.c if (*dpp < *dep && BITSPERDIG <= (int)sizeof(*ddp) * CHAR_BIT - *numbits_in_dd_p) { BITSPERDIG 592 bignum.c *numbits_in_dd_p += BITSPERDIG; BITSPERDIG 962 bignum.c size_t num_bdigits = (num_bits + BITSPERDIG - 1) / BITSPERDIG; BITSPERDIG 963 bignum.c *nlp_bits_ret = (int)(num_bdigits * BITSPERDIG - num_bits); BITSPERDIG 992 bignum.c size_t q3 = num_bytes3 / BITSPERDIG; BITSPERDIG 993 bignum.c size_t r3 = num_bytes3 % BITSPERDIG; BITSPERDIG 1010 bignum.c size_t tmp1 = CHAR_BIT * BITSPERDIG - (CHAR_BIT * r3 - r1 * r2); BITSPERDIG 1011 bignum.c size_t q4 = tmp1 / BITSPERDIG; BITSPERDIG 1012 bignum.c int r4 = (int)(tmp1 % BITSPERDIG); BITSPERDIG 1019 bignum.c size_t q4 = tmp1 / BITSPERDIG; BITSPERDIG 1020 bignum.c int r4 = (int)(tmp1 % BITSPERDIG); BITSPERDIG 1032 bignum.c if (numwords <= (SIZE_MAX - (BITSPERDIG-1)) / CHAR_BIT / wordsize) { BITSPERDIG 1054 bignum.c while (BITSPERDIG <= *numbits_in_dd_p) { BITSPERDIG 1057 bignum.c *numbits_in_dd_p -= BITSPERDIG; BITSPERDIG 1253 bignum.c (bdigits[num_bdigits-1] >> (BITSPERDIG - nlp_bits - 1))) { BITSPERDIG 1254 bignum.c bdigits[num_bdigits-1] |= BIGLO(BDIGMAX << (BITSPERDIG - nlp_bits)); BITSPERDIG 3782 bignum.c num_bdigits = (num_digits / BITSPERDIG) * bits_per_digit + roomof((num_digits % BITSPERDIG) * bits_per_digit, BITSPERDIG); BITSPERDIG 3792 bignum.c if (BITSPERDIG <= numbits) { BITSPERDIG 3795 bignum.c numbits -= BITSPERDIG; BITSPERDIG 4458 bignum.c digits[i] = BIGLO(RSHIFT(n ,BITSPERDIG*i)); BITSPERDIG 4559 bignum.c assert(POW2_P(BITSPERDIG)); BITSPERDIG 4577 bignum.c shift_numbits = (int)(lens[0] & (BITSPERDIG-1)); BITSPERDIG 4578 bignum.c shift_numdigits = (lens[0] >> bit_length(BITSPERDIG-1)) | BITSPERDIG 4579 bignum.c (lens[1] << (CHAR_BIT*SIZEOF_SIZE_T - bit_length(BITSPERDIG-1))); BITSPERDIG 4586 bignum.c long s1 = shift/BITSPERDIG; BITSPERDIG 4587 bignum.c int s2 = (int)(shift%BITSPERDIG); BITSPERDIG 4594 bignum.c long s1 = shift/BITSPERDIG; BITSPERDIG 4595 bignum.c int s2 = (int)(shift%BITSPERDIG); BITSPERDIG 4898 bignum.c if (xn >= LONG_MAX/BITSPERDIG) { BITSPERDIG 5024 bignum.c if (xn >= LONG_MAX/BITSPERDIG) { BITSPERDIG 5066 bignum.c num <<= BITSPERDIG; BITSPERDIG 5216 bignum.c bits = i * BITSPERDIG - nlz(ds[i-1]); BITSPERDIG 5222 bignum.c lo = (bits -= DBL_MANT_DIG+1) / BITSPERDIG; BITSPERDIG 5229 bignum.c if (bits && (dl & ((BDIGIT)1 << (bits %= BITSPERDIG)))) { BITSPERDIG 5245 bignum.c if (lo > INT_MAX / BITSPERDIG) BITSPERDIG 5247 bignum.c else if (lo < INT_MIN / BITSPERDIG) BITSPERDIG 5250 bignum.c d = ldexp(d, (int)(lo * BITSPERDIG)); BITSPERDIG 6104 bignum.c #define DBL_BIGDIG ((DBL_MANT_DIG + BITSPERDIG) / BITSPERDIG) BITSPERDIG 6110 bignum.c ex = l * BITSPERDIG - nlz(BDIGITS(x)[l-1]); BITSPERDIG 6111 bignum.c ex -= 2 * DBL_BIGDIG * BITSPERDIG; BITSPERDIG 6132 bignum.c ey = l * BITSPERDIG - nlz(BDIGITS(y)[l-1]); BITSPERDIG 6133 bignum.c ey -= DBL_BIGDIG * BITSPERDIG; BITSPERDIG 6564 bignum.c shift_numbits = (int)(shift & (BITSPERDIG-1)); BITSPERDIG 6565 bignum.c shift_numdigits = shift >> bit_length(BITSPERDIG-1); BITSPERDIG 6594 bignum.c shift_numbits = (int)(shift & (BITSPERDIG-1)); BITSPERDIG 6595 bignum.c shift_numdigits = shift >> bit_length(BITSPERDIG-1); BITSPERDIG 6633 bignum.c s1 = shift/BITSPERDIG; BITSPERDIG 6634 bignum.c s2 = shift%BITSPERDIG;