Searched defs:fs_fsize (Results 1 - 6 of 6) sorted by relevance

/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dfs.h161 int fs_fsize; /* size of frag blocks in fs */ member in struct:fs
403 #define fragoff(fs, loc) /* calculates (loc % fs->fs_fsize) */ \
407 #define numfrags(fs, loc) /* calculates (loc / fs->fs_fsize) */ \
411 #define fragroundup(fs, size) /* calculates roundup(size, fs->fs_fsize) */ \
412 (((size) + (fs)->fs_fsize - 1) & (fs)->fs_fmask)
H A Dufs.h76 grub_int32_t fs_fsize; /* size of frag blocks in fs */ member in struct:fs
H A Dufs2.h258 grub_int32_t fs_fsize; /* size of frag blocks in fs */ member in struct:fs
395 #define fragroundup(fs, size) /* calculates roundup(size, fs->fs_fsize) */ \
/illumos-gate/usr/src/uts/common/sys/fs/
H A Dufs_fs.h252 int32_t fs_fsize; /* size of frag blocks in fs */ member in struct:fs
636 #define fragoff(fs, loc) /* calculates (loc % fs->fs_fsize) */ \
652 #define numfrags(fs, loc) /* calculates (loc / fs->fs_fsize) */ \
670 #define fragroundup(fs, size) /* calculates roundup(size, fs->fs_fsize) */ \
671 (((size) + (fs)->fs_fsize - 1) & (offset_t)(fs)->fs_fmask)
/illumos-gate/usr/src/boot/lib/libstand/
H A Dext2fs.c243 #define fs_fsize fs_fc.fc_fsize macro
375 fs->fs_fsize = 1 << fs->fs_fshift;
376 fs->fs_fmask = fs->fs_fsize - 1;
/illumos-gate/usr/src/boot/sys/ufs/ffs/
H A Dfs.h274 int32_t fs_fsize; /* size of frag blocks in fs */ member in struct:fs
572 #define fragoff(fs, loc) /* calculates (loc % fs->fs_fsize) */ \
574 #define lfragtosize(fs, frag) /* calculates ((off_t)frag * fs->fs_fsize) */ \
583 #define numfrags(fs, loc) /* calculates (loc / fs->fs_fsize) */ \
587 #define fragroundup(fs, size) /* calculates roundup(size, fs->fs_fsize) */ \
588 (((size) + (fs)->fs_fsize - 1) & (fs)->fs_fmask)

Completed in 481 milliseconds