MALLOC_BITS
if (info->bits[i/MALLOC_BITS] & (1UL << (i % MALLOC_BITS))) {
info->bits[i/MALLOC_BITS] |= (u_int)(1UL << (i % MALLOC_BITS));
(((malloc_pagesize >> bits)+MALLOC_BITS-1) / MALLOC_BITS);
for(;k-i >= MALLOC_BITS; i += MALLOC_BITS)
bp->bits[i / MALLOC_BITS] = ~0U;
bp->bits[i/MALLOC_BITS] |= 1<<(i%MALLOC_BITS);
bp->bits[i / MALLOC_BITS] &= ~(1 << (i % MALLOC_BITS));
k += (lp-bp->bits)*MALLOC_BITS;
if ((*mp)->bits[i/MALLOC_BITS] & (1UL << (i % MALLOC_BITS))) {