SIZEOF_BDIGITS     28 bignum.c       #define BITSPERDIG (SIZEOF_BDIGITS*CHAR_BIT)
SIZEOF_BDIGITS     30 bignum.c       #define DIGSPERLONG ((unsigned int)(SIZEOF_LONG/SIZEOF_BDIGITS))
SIZEOF_BDIGITS     32 bignum.c       # define DIGSPERLL ((unsigned int)(SIZEOF_LONG_LONG/SIZEOF_BDIGITS))
SIZEOF_BDIGITS    192 bignum.c           if (len*SIZEOF_BDIGITS <= sizeof(long)) {
SIZEOF_BDIGITS    291 bignum.c       	if (len > SIZEOF_LONG_LONG/SIZEOF_BDIGITS) {
SIZEOF_BDIGITS    292 bignum.c       	    len = SIZEOF_LONG_LONG/SIZEOF_BDIGITS;
SIZEOF_BDIGITS    358 bignum.c           len = RBIGNUM_LEN(val) * SIZEOF_BDIGITS;
SIZEOF_BDIGITS    372 bignum.c       #define BNEG(b) (RSHIFT(((BDIGIT*)b)[QUAD_SIZE/SIZEOF_BDIGITS-1],BITSPERDIG-1) != 0)
SIZEOF_BDIGITS    377 bignum.c           VALUE big = bignew(QUAD_SIZE/SIZEOF_BDIGITS, 1);
SIZEOF_BDIGITS    873 bignum.c       	k = SIZEOF_BDIGITS;
SIZEOF_BDIGITS    945 bignum.c       #if SIZEOF_BDIGITS > 2
SIZEOF_BDIGITS   1068 bignum.c           if (len > SIZEOF_LONG_LONG/SIZEOF_BDIGITS)
SIZEOF_BDIGITS   2117 bignum.c       	    const long BIGLEN_LIMIT = 1024*1024 / SIZEOF_BDIGITS;
SIZEOF_BDIGITS   2330 bignum.c           if (RBIGNUM_LEN(y) > SIZEOF_LONG / SIZEOF_BDIGITS) {
SIZEOF_BDIGITS   2614 bignum.c           return LONG2FIX(RBIGNUM_LEN(big)*SIZEOF_BDIGITS);
SIZEOF_BDIGITS     30 marshal.c      #if SIZEOF_SHORT == SIZEOF_BDIGITS
SIZEOF_BDIGITS    676 marshal.c      #if SIZEOF_BDIGITS > SIZEOF_SHORT
SIZEOF_BDIGITS    680 marshal.c      		    for (i=0; i<SIZEOF_BDIGITS; i+=SIZEOF_SHORT) {
SIZEOF_BDIGITS   1330 marshal.c      #if SIZEOF_BDIGITS == SIZEOF_SHORT
SIZEOF_BDIGITS   1337 marshal.c      #if SIZEOF_BDIGITS > SIZEOF_SHORT
SIZEOF_BDIGITS   1345 marshal.c      #if SIZEOF_BDIGITS > SIZEOF_SHORT
SIZEOF_BDIGITS   1349 marshal.c      		for (i=0; i<SIZEOF_BDIGITS; i++) {
SIZEOF_BDIGITS    233 random.c                 len = RBIGNUM_LEN(seed) * SIZEOF_BDIGITS;
SIZEOF_BDIGITS    253 random.c                   j = i * SIZEOF_BDIGITS / 4;
SIZEOF_BDIGITS    254 random.c       #if SIZEOF_BDIGITS < 4
SIZEOF_BDIGITS    255 random.c                   buf[j] <<= SIZEOF_BDIGITS * 8;
SIZEOF_BDIGITS    321 random.c           rb_big_resize((VALUE)big, DEFAULT_SEED_LEN / SIZEOF_BDIGITS + 1);
SIZEOF_BDIGITS    413 random.c           len = (RBIGNUM_LEN(limit) * SIZEOF_BDIGITS + 3) / 4;
SIZEOF_BDIGITS    416 random.c       #if SIZEOF_BDIGITS == 2
SIZEOF_BDIGITS     25 sprintf.c      #define BITSPERDIG (SIZEOF_BDIGITS*CHAR_BIT)