Searched refs:NBBY (Results 1 – 7 of 7) sorted by relevance
45 #ifndef NBBY /* the BSD family defines NBBY */46 #define NBBY 8 /* 8 bits per byte */ macro48 #define setbit(a, i) (((u8 *)a)[(i)/NBBY] |= 1<<((i)%NBBY))49 #define clrbit(a, i) (((u8 *)a)[(i)/NBBY] &= ~(1<<((i)%NBBY)))50 #define isset(a, i) (((const u8 *)a)[(i)/NBBY] & (1<<((i)%NBBY)))51 #define isclr(a, i) ((((const u8 *)a)[(i)/NBBY] & (1<<((i)%NBBY))) == 0)
61 ((1 << (NBBY*(int)sizeof(__uint8_t))) - 1)
427 #define NBWORD (NBBY * sizeof(unsigned int))
1214 #define XFS_INODES_PER_CHUNK (NBBY * sizeof(xfs_inofree_t))
146 #define NBBY 8 /* number of bits per byte */ macro
933 nrbmblocks = howmany_64(nrextents, NBBY * sbp->sb_blocksize); in xfs_growfs_rt()987 nsbp->sb_rbmblocks * NBBY * in xfs_growfs_rt()
161 u8 vec[MAXCHANNEL / NBBY];