Searched refs:CK_BITMAP_BLOCK (Results 1 - 1 of 1) sorted by relevance

/freebsd-13-stable/sys/contrib/ck/include/
H A Dck_bitmap.h48 #define CK_BITMAP_BLOCK (sizeof(unsigned int) * CHAR_BIT) macro
49 #define CK_BITMAP_OFFSET(i) ((i) % CK_BITMAP_BLOCK)
51 #define CK_BITMAP_PTR(x, i) ((x) + ((i) / CK_BITMAP_BLOCK))
52 #define CK_BITMAP_BLOCKS(n) (((n) + CK_BITMAP_BLOCK - 1) / CK_BITMAP_BLOCK)
322 words = limit / CK_BITMAP_BLOCK;
323 slop = limit % CK_BITMAP_BLOCK;
354 words = limit / CK_BITMAP_BLOCK;
355 slop = limit % CK_BITMAP_BLOCK;
384 words = limit / CK_BITMAP_BLOCK;
[all...]

Completed in 101 milliseconds