Home
last modified time | relevance | path

Searched refs:cblocksize (Results 1 – 1 of 1) sorted by relevance

/freebsd/usr.bin/du/
H A Ddu.c76 static long blocksize, cblocksize; variable
108 cblocksize = DEV_BSIZE; in main()
125 cblocksize = atoi(optarg); in main()
126 if (errno == ERANGE || cblocksize <= 0) { in main()
231 if (!Aflag && (cblocksize % DEV_BSIZE) != 0) in main()
232 cblocksize = howmany(cblocksize, DEV_BSIZE) * DEV_BSIZE; in main()
249 cblocksize /= DEV_BSIZE; in main()
254 threshold = howmany(threshold / DEV_BSIZE * cblocksize, in main()
279 howmany(p->fts_statp->st_size, cblocksize) : in main()
280 howmany(p->fts_statp->st_blocks, cblocksize); in main()
[all …]