Lines Matching refs:tot
43 fsblkcnt_t tot, count, count1, d_indirect, t_indirect, ind; in nblk() local
57 tot = howmany(size, bsize); in nblk()
59 if (tot > t_indirect) { in nblk()
60 count1 = (tot - ind * ind - (DIRECT + 1)) / ind; in nblk()
62 } else if (tot > d_indirect) { in nblk()
63 count = (tot - (DIRECT + 1)) / ind + 2; in nblk()
64 } else if (tot > DIRECT) { in nblk()
74 tot += count; in nblk()
80 tot *= howmany(bsize, DEV_BSIZE); in nblk()
82 tot = howmany(frags, DEV_BSIZE); in nblk()
83 return (tot); in nblk()