Lines Matching defs:blkno
221 #define setbmap(blkno) setbit(blockmap, blkno)
222 #define testbmap(blkno) isset(blockmap, blkno)
223 #define clrbmap(blkno) clrbit(blockmap, blkno)
225 #define setbusy(blkno) setbit(busymap, blkno)
226 #define testbusy(blkno) isset(busymap, blkno)
227 #define clrbusy(blkno) clrbit(busymap, blkno)
229 #define fsbtodb(blkno) ((blkno) * (fsbsize / DEV_BSIZE))
230 #define dbtofsb(blkno) ((blkno) / (fsbsize / DEV_BSIZE))