Searched refs:dbtok (Results 1 – 3 of 3) sorted by relevance
/titanic_50/usr/src/cmd/fs.d/ufs/df/ |
H A D | df.c | 99 #define dbtok(x, b) \ macro 530 (void) printf("%8lld\n", dbtok(avail, in dfreedev() 534 dbtok(totalblks, (fsblkcnt64_t)sblock.fs_fsize), in dfreedev() 535 dbtok(used, (fsblkcnt64_t)sblock.fs_fsize), in dfreedev() 536 dbtok(avail, (fsblkcnt64_t)sblock.fs_fsize)); in dfreedev() 543 t_totalblks += dbtok(totalblks, in dfreedev() 545 t_used += dbtok(used, (fsblkcnt64_t)sblock.fs_fsize); in dfreedev() 546 t_avail += dbtok(avail, (fsblkcnt64_t)sblock.fs_fsize); in dfreedev() 602 (void) printf("%8lld\n", dbtok(avail, in dfreemnt() 606 dbtok(totalblks, in dfreemnt() [all …]
|
/titanic_50/usr/src/cmd/fs.d/ufs/repquota/ |
H A D | repquota.c | 93 #define dbtok(x) ((x) / (1024 / DEV_BSIZE)) macro 95 #define dbtok(x) ((x) * (DEV_BSIZE / 1024)) macro 331 dbtok(dqp->dqb_curblocks), in prquota() 332 dbtok(dqp->dqb_bsoftlimit), in prquota() 333 dbtok(dqp->dqb_bhardlimit), in prquota()
|
/titanic_50/usr/src/cmd/fs.d/ufs/edquota/ |
H A D | edquota.c | 68 #define dbtok(x) ((x) / (1024 / DEV_BSIZE)) macro 71 #define dbtok(x) ((x) * (DEV_BSIZE / 1024)) macro 340 dbtok(fsqp->fsq_dqb.dqb_bsoftlimit), in getprivs() 341 dbtok(fsqp->fsq_dqb.dqb_bhardlimit), in getprivs() 418 max_limit = dbtok(UINT_MAX); in putprivs()
|