Searched refs:cg_freeoff (Results 1 – 10 of 10) sorted by relevance
/freebsd/usr.sbin/makefs/ffs/ |
H A D | ffs_bswap.c | 222 n->cg_freeoff = bswap32(o->cg_freeoff); in ffs_cg_swap()
|
H A D | mkfs.c | 674 acg.cg_freeoff = acg.cg_iusedoff + howmany(sblock.fs_ipg, CHAR_BIT); in initcg() 676 acg.cg_nextfreeoff = acg.cg_freeoff + in initcg() 679 acg.cg_clustersumoff = acg.cg_freeoff + in initcg()
|
H A D | ffs_alloc.c | 561 ufs_rw32(cgp->cg_freeoff, needswap), in ffs_mapsearch()
|
/freebsd/sbin/fsck_ffs/ |
H A D | fsutil.c | 1043 CHK(cgp->cg_freeoff, !=, in check_cgmagic() 1047 cgp->cg_freeoff + howmany(sblock.fs_fpg, CHAR_BIT), "%jd"); in check_cgmagic() 1052 roundup(cgp->cg_freeoff + howmany(sblock.fs_fpg, CHAR_BIT), in check_cgmagic() 1103 cgp->cg_freeoff = cgp->cg_iusedoff + howmany(sblock.fs_ipg, CHAR_BIT); in rebuild_cg() 1104 cgp->cg_nextfreeoff = cgp->cg_freeoff + howmany(sblock.fs_fpg,CHAR_BIT); in rebuild_cg()
|
H A D | pass5.c | 128 newcg->cg_freeoff = newcg->cg_iusedoff + inomapsize; in pass5() 130 newcg->cg_nextfreeoff = newcg->cg_freeoff + blkmapsize; in pass5()
|
/freebsd/usr.sbin/makefs/ |
H A D | makefs.h | 298 ((u_int8_t *)((u_int8_t *)(cgp) + ufs_rw32((cgp)->cg_freeoff, (ns))))
|
/freebsd/sys/ufs/ffs/ |
H A D | fs.h | 613 uint32_t cg_freeoff; /* (uint8) free block map */ member 635 ((uint8_t *)((uint8_t *)(cgp) + (cgp)->cg_freeoff))
|
/freebsd/sbin/growfs/ |
H A D | growfs.c | 347 acg.cg_freeoff = acg.cg_iusedoff + howmany(sblock.fs_ipg, CHAR_BIT); in initcg() 348 acg.cg_nextfreeoff = acg.cg_freeoff + howmany(sblock.fs_fpg, CHAR_BIT); in initcg()
|
H A D | debug.c | 376 fprintf(dbg_log, "freeoff int32_t 0x%08x\n", cgr->cg_freeoff); in dbg_dump_cg()
|
/freebsd/sbin/newfs/ |
H A D | mkfs.c | 752 acg.cg_freeoff = acg.cg_iusedoff + howmany(sblock.fs_ipg, CHAR_BIT); in initcg() 753 acg.cg_nextfreeoff = acg.cg_freeoff + howmany(sblock.fs_fpg, CHAR_BIT); in initcg()
|