Searched refs:BITS_PER_MAP (Results 1 – 2 of 2) sorted by relevance
181 #define BITS_PER_MAP 32 macro184 #define CLRBIT(A, N) ((A)[(N)/BITS_PER_MAP] &= ~(1<<((N)%BITS_PER_MAP)))185 #define SETBIT(A, N) ((A)[(N)/BITS_PER_MAP] |= (1<<((N)%BITS_PER_MAP)))186 #define ISSET(A, N) ((A)[(N)/BITS_PER_MAP] & (1<<((N)%BITS_PER_MAP)))
645 for (i = 0; i < BITS_PER_MAP; i++) { in first_free()683 j = bit / BITS_PER_MAP; in overflow_page()684 bit = bit & ~(BITS_PER_MAP - 1); in overflow_page()689 for (; bit <= in_use_bits; j++, bit += BITS_PER_MAP) in overflow_page()