Lines Matching refs:cstotal
59 struct csum_total cstotal; in pass5() local
146 memset(&cstotal, 0, sizeof(struct csum_total)); in pass5()
328 cstotal.cs_nffree += cg->cg_cs.cs_nffree; in pass5()
329 cstotal.cs_nbfree += cg->cg_cs.cs_nbfree; in pass5()
330 cstotal.cs_nifree += cg->cg_cs.cs_nifree; in pass5()
331 cstotal.cs_ndir += cg->cg_cs.cs_ndir; in pass5()
333 cstotal.cs_nffree += newcg->cg_cs.cs_nffree; in pass5()
334 cstotal.cs_nbfree += newcg->cg_cs.cs_nbfree; in pass5()
335 cstotal.cs_nifree += newcg->cg_cs.cs_nifree; in pass5()
336 cstotal.cs_ndir += newcg->cg_cs.cs_ndir; in pass5()
367 memcmp(&cstotal, &fs->fs_cstotal, sizeof cstotal) != 0 in pass5()
379 (intmax_t)cstotal.cs_ndir, in pass5()
380 (intmax_t)cstotal.cs_nbfree, in pass5()
381 (intmax_t)cstotal.cs_nffree, in pass5()
382 (intmax_t)cstotal.cs_nifree, in pass5()
383 (intmax_t)cstotal.cs_numclusters); in pass5()
385 memmove(&fs->fs_cstotal, &cstotal, sizeof cstotal); in pass5()
399 cmd.value = cstotal.cs_ndir - fs->fs_cstotal.cs_ndir; in pass5()
409 cmd.value = cstotal.cs_nbfree - fs->fs_cstotal.cs_nbfree; in pass5()
420 cmd.value = cstotal.cs_nifree - fs->fs_cstotal.cs_nifree; in pass5()
431 cmd.value = cstotal.cs_nffree - fs->fs_cstotal.cs_nffree; in pass5()
442 cmd.value = cstotal.cs_numclusters - in pass5()