Searched defs:BT_NBIPUL (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/uts/common/sys/
H A Dbitmap.h56 #define BT_ULSHIFT 6 /* log base 2 of BT_NBIPUL, to extract word index */
57 #define BT_ULSHIFT32 5 /* log base 2 of BT_NBIPUL, to extract word index */
59 #define BT_ULSHIFT 5 /* log base 2 of BT_NBIPUL, to extract word index */
62 #define BT_NBIPUL (1 << BT_ULSHIFT) /* n bits per ulong_t */ macro
63 #define BT_ULMASK (BT_NBIPUL - 1) /* to extract bit index */
105 (((nbits) + BT_NBIPUL - 1l) / BT_NBIPUL)
180 (bitindex) % BT_NBIPUL); }
183 (bitindex) % BT_NBIPUL); }

Completed in 44 milliseconds