Searched refs:fs_fsbtodb (Results 1 – 11 of 11) sorted by relevance
/titanic_50/usr/src/uts/common/sys/fs/ |
H A D | ufs_fs.h | 268 int32_t fs_fsbtodb; /* fsbtodb and dbtofsb shift constant */ member 529 #define fsbtodb(fs, b) (((daddr_t)(b)) << (fs)->fs_fsbtodb) 531 #define fsbtodb(fs, b) (((diskaddr_t)(b)) << (fs)->fs_fsbtodb) 534 #define dbtofsb(fs, b) ((b) >> (fs)->fs_fsbtodb) 545 (daddr_t)(b) : ((daddr_t)(b) << (fs)->fs_fsbtodb)) 548 (diskaddr_t)(b) : ((diskaddr_t)(b) << (fs)->fs_fsbtodb)) 551 (b) >> (fs)->fs_fsbtodb : (b)) 553 (b) >> ((fs)->fs_fsbtodb + (fs)->fs_fragshift) : \
|
/titanic_50/usr/src/grub/grub-0.97/stage2/ |
H A D | fs.h | 177 int fs_fsbtodb; /* fsbtodb and dbtofsb shift constant */ member 349 #define fsbtodb(fs, b) ((b) << (fs)->fs_fsbtodb) 350 #define dbtofsb(fs, b) ((b) >> (fs)->fs_fsbtodb)
|
H A D | ufs2.h | 274 grub_int32_t fs_fsbtodb; /* fsbtodb and dbtofsb shift constant */ member 354 #define fsbtodb(fs, b) ((b) << (fs)->fs_fsbtodb) 355 #define dbtofsb(fs, b) ((b) >> (fs)->fs_fsbtodb)
|
H A D | ufs.h | 92 grub_int32_t fs_fsbtodb; /* fsbtodb and dbtofsb shift constant */ member 220 #define fsbtodb(fs, b) (((grub_daddr32_t)(b)) << (fs)->fs_fsbtodb)
|
/titanic_50/usr/src/cmd/fs.d/ufs/fstyp/ |
H A D | fstyp.c | 243 ADD_INT32(h, "fsbtodb", fsp->fs_fsbtodb); in get_attr() 326 fsp->fs_frag, fsp->fs_fragshift, fsp->fs_fsbtodb); in dumpfs()
|
/titanic_50/usr/src/cmd/fs.d/ufs/fsck/ |
H A D | setup.c | 1192 altsblock.fs_fsbtodb = sblock.fs_fsbtodb; in checksb()
|
/titanic_50/usr/src/uts/common/fs/ufs/ |
H A D | ufs_lockfs.c | 642 (mfs->fs_fsbtodb != dfs->fs_fsbtodb) || in ufs_reconcile_fs()
|
H A D | ufs_vfsops.c | 918 if ((((diskaddr_t)(fsp->fs_size)) << fsp->fs_fsbtodb) in mountfs()
|
H A D | ufs_alloc.c | 1222 (fs->fs_fragshift + fs->fs_fsbtodb); in alloccgblk()
|
/titanic_50/usr/src/cmd/fs.d/ufs/mkfs/ |
H A D | mkfs.c | 1622 for (sblock.fs_fsbtodb = 0, i = NSPF(&sblock); i > 1; i >>= 1) in main() 1623 sblock.fs_fsbtodb++; in main() 5759 printf("0x%x sblock.fs_fsbtodb\n", sblock.fs_fsbtodb); in dump_sblock()
|
/titanic_50/usr/src/cmd/fs.d/ufs/fsdb/ |
H A D | fsdb.c | 4572 fs->fs_frag, fs->fs_fragshift, fs->fs_fsbtodb); in printsb()
|