Searched refs:cstotal (Results 1 - 2 of 2) sorted by relevance

/freebsd-13-stable/sbin/fsck_ffs/
H A Dpass5.c68 struct csum_total cstotal; local
155 memset(&cstotal, 0, sizeof(struct csum_total));
337 cstotal.cs_nffree += cg->cg_cs.cs_nffree;
338 cstotal.cs_nbfree += cg->cg_cs.cs_nbfree;
339 cstotal.cs_nifree += cg->cg_cs.cs_nifree;
340 cstotal.cs_ndir += cg->cg_cs.cs_ndir;
342 cstotal.cs_nffree += newcg->cg_cs.cs_nffree;
343 cstotal.cs_nbfree += newcg->cg_cs.cs_nbfree;
344 cstotal.cs_nifree += newcg->cg_cs.cs_nifree;
345 cstotal
[all...]
/freebsd-13-stable/sys/ufs/ffs/
H A Dffs_softdep.c2667 struct csum_total cstotal; local
2750 bzero(&cstotal, sizeof cstotal);
2759 cstotal.cs_nffree += cgp->cg_cs.cs_nffree;
2760 cstotal.cs_nbfree += cgp->cg_cs.cs_nbfree;
2761 cstotal.cs_nifree += cgp->cg_cs.cs_nifree;
2762 cstotal.cs_ndir += cgp->cg_cs.cs_ndir;
2767 if (bcmp(&cstotal, &fs->fs_cstotal, sizeof cstotal))
2770 bcopy(&cstotal,
[all...]

Completed in 100 milliseconds