Symbol: fsize
bin/cp/utils.c
199
size_t fsize = (size_t)fs->st_size;
bin/cp/utils.c
200
p = mmap(NULL, fsize, PROT_READ, MAP_FILE|MAP_SHARED,
bin/cp/utils.c
215
remainder = fsize;
bin/cp/utils.c
221
if (write(to_fd, &p[fsize - remainder],
bin/cp/utils.c
233
if (munmap(p, fsize) < 0) {
lib/libukfs/ukfs_int_disklabel.h
137
uint32_t fsize; /* FFS, ADOS:
lib/libukfs/ukfs_int_disklabel.h
141
#define p_fsize __partition_u2.fsize
libexec/tftpd/tftpd.c
545
unsigned long fsize;
libexec/tftpd/tftpd.c
555
fsize = strtoul(val, &endp, 10);
libexec/tftpd/tftpd.c
556
if ((fsize == ULONG_MAX && errno == ERANGE) || *endp) {
libexec/tftpd/tftpd.c
565
if (fsize > (unsigned long) 65535 * 65464) {
libexec/tftpd/tftpd.c
576
tftp_tsize = fsize;
sbin/newfs/extern.h
39
extern int fsize; /* fragment size */
sbin/newfs/mkfs.c
246
sblock.fs_fsize = fsize;
sbin/newfs/newfs.c
215
int fsize = 0; /* fragment size */
sbin/newfs/newfs.c
360
fsize = strsuftoi64("fragment size",
sbin/newfs/newfs.c
638
if (fsize == 0) {
sbin/newfs/newfs.c
639
fsize = bsize / DFL_FRAG_BLK;
sbin/newfs/newfs.c
640
if (fsize <= 0) {
sbin/newfs/newfs.c
642
fsize = APPLEUFS_DFL_FRAGSIZE;
sbin/newfs/newfs.c
645
fsize = S_DFL_FRAGSIZE;
sbin/newfs/newfs.c
647
fsize = M_DFL_FRAGSIZE;
sbin/newfs/newfs.c
649
fsize = L_DFL_FRAGSIZE;
sbin/newfs/newfs.c
651
fsize = LL_DFL_FRAGSIZE;
sbin/newfs/newfs.c
652
if (fsize < sectorsize)
sbin/newfs/newfs.c
653
fsize = sectorsize;
sbin/newfs/newfs.c
661
bsize = DFL_FRAG_BLK * fsize;
sbin/newfs/newfs.c
664
if (isappleufs && (fsize < APPLEUFS_DFL_FRAGSIZE)) {
sbin/newfs/newfs.c
666
fsize, APPLEUFS_DFL_FRAGSIZE);
sbin/newfs/newfs.c
682
density = NFPI * fsize;
sbin/newfs_ext2fs/extern.h
41
extern uint fsize; /* fragment size */
sbin/newfs_ext2fs/mke2fs.c
208
if (!powerof2(fsize)) {
sbin/newfs_ext2fs/mke2fs.c
211
fsize);
sbin/newfs_ext2fs/mke2fs.c
213
if (fsize < sectorsize) {
sbin/newfs_ext2fs/mke2fs.c
216
fsize, sectorsize);
sbin/newfs_ext2fs/mke2fs.c
228
if (bsize != fsize) {
sbin/newfs_ext2fs/mke2fs.c
237
bsize, fsize);
sbin/newfs_ext2fs/mke2fs.c
248
sblock.e2fs.e2fs_fsize = ilog2(fsize) - LOG_MINBSIZE;
sbin/newfs_ext2fs/mke2fs.c
535
fssize, bsize, fsize);
sbin/newfs_ext2fs/newfs_ext2fs.c
109
uint fsize = 0; /* fragment size */
sbin/newfs_ext2fs/newfs_ext2fs.c
185
fsize = strsuftoi64("fragment size",
sbin/newfs_ext2fs/newfs_ext2fs.c
368
bsize = fsize;
sbin/newfs_ext2fs/newfs_ext2fs.c
378
if (fsize == 0)
sbin/newfs_ext2fs/newfs_ext2fs.c
379
fsize = bsize;
sbin/newfs_lfs/make_lfs.c
405
int fsize; /* Fragment size */
sbin/newfs_lfs/make_lfs.c
468
if (!(fsize = frag_size)) {
sbin/newfs_lfs/make_lfs.c
469
fsize = DFL_LFSFRAG;
sbin/newfs_lfs/make_lfs.c
471
fsize = SMALL_LFSFRAG;
sbin/newfs_lfs/make_lfs.c
480
if (fsize > bsize) {
sbin/newfs_lfs/make_lfs.c
484
fsize = bsize;
sbin/newfs_lfs/make_lfs.c
505
ibsize = fsize;
sbin/newfs_lfs/make_lfs.c
506
if (ibsize <= 0 || ibsize % fsize || ibsize > bsize)
sbin/newfs_lfs/make_lfs.c
516
if (bsize != DFL_LFSBLOCK || fsize != DFL_LFSFRAG) {
sbin/newfs_lfs/make_lfs.c
521
lfs_sb_setfsize(fs, fsize);
sbin/newfs_lfs/make_lfs.c
523
lfs_sb_setffmask(fs, fsize - 1);
sbin/newfs_lfs/make_lfs.c
524
lfs_sb_setffshift(fs, lfs_log2(fsize));
sbin/newfs_lfs/make_lfs.c
525
if (1 << lfs_sb_getffshift(fs) != fsize)
sbin/newfs_lfs/make_lfs.c
526
fatal("%d: frag size not a power of 2", fsize);
sbin/newfs_lfs/make_lfs.c
551
if (ssize % fsize) {
sbin/newfs_lfs/make_lfs.c
555
ssize = roundup(ssize, fsize);
sbin/newfs_lfs/make_lfs.c
559
lfs_sb_setsumsize(fs, fsize);
sbin/newfs_lfs/make_lfs.c
589
lfs_sb_setfsbtodb(fs, lfs_log2(fsize / secsize));
sbin/newfs_lfs/make_lfs.c
595
label_fsb = lfs_btofsb(fs, roundup(LFS_LABELPAD, fsize));
sbin/newfs_lfs/make_lfs.c
596
sb_fsb = lfs_btofsb(fs, roundup(LFS_SBPAD, fsize));
sbin/newfs_lfs/make_lfs.c
643
fprintf(stderr,"Using segment size %d, block size %d, frag size %d.\n", ssize, bsize, fsize);
sbin/newfs_lfs/newfs.c
236
fsize = strsuftoi64("fragment size", optarg, LFS_MINBLOCKSIZE, INT64_MAX, NULL);
sbin/newfs_lfs/newfs.c
393
r = make_lfs(fso, secsize, &dkw, minfree, bsize, fsize, lfs_segsize,
sbin/newfs_lfs/newfs.c
86
int fsize = 0; /* fragment size */
sys/arch/amiga/amiga/disksubr.c
468
pp->p_fsize = pbp->e.fsize;
sys/arch/amigappc/amigappc/amiga_init.c
70
set_boot_args(int boot_howto, u_long fstart, u_long fsize, u_long csize,
sys/arch/amigappc/amigappc/amiga_init.c
77
boot_fphysize = fsize;
sys/arch/mips/include/asm.h
242
#define STATIC_NESTED_NOPROFILE(x, fsize, retpc) \
sys/arch/mips/include/asm.h
246
.frame sp, fsize, retpc
sys/arch/mips/include/asm.h
252
#define NESTED_NOPROFILE(x, fsize, retpc) \
sys/arch/mips/include/asm.h
254
STATIC_NESTED_NOPROFILE(x, fsize, retpc)
sys/arch/mips/include/asm.h
261
#define NESTED(x, fsize, retpc) \
sys/arch/mips/include/asm.h
262
NESTED_NOPROFILE(x, fsize, retpc); \
sys/arch/mips/include/asm.h
269
#define STATIC_NESTED(x, fsize, retpc) \
sys/arch/mips/include/asm.h
270
STATIC_NESTED_NOPROFILE(x, fsize, retpc); \
sys/arch/mips/include/asm.h
367
#define NON_LEAF(x, fsize, retpc) NESTED(x, fsize, retpc)
sys/arch/mips/include/asm.h
368
#define NNON_LEAF(x, fsize, retpc) NESTED_NOPROFILE(x, fsize, retpc)
sys/arch/ofppc/ofppc/disksubr.c
546
pp->p_fsize = pbp->e.fsize;
sys/compat/linux/arch/alpha/linux_machdep.c
117
int fsize, rndfsize;
sys/compat/linux/arch/alpha/linux_machdep.c
126
fsize = sizeof(struct linux_rt_sigframe);
sys/compat/linux/arch/alpha/linux_machdep.c
127
rndfsize = ((fsize + 15) / 16) * 16;
sys/compat/linux/arch/alpha/linux_machdep.c
172
error = copyout((void *)&sigframe, (void *)sfp, fsize);
sys/compat/linux/arch/alpha/linux_machdep.c
212
int fsize, rndfsize;
sys/compat/linux/arch/alpha/linux_machdep.c
221
fsize = sizeof(struct linux_sigframe);
sys/compat/linux/arch/alpha/linux_machdep.c
222
rndfsize = ((fsize + 15) / 16) * 16;
sys/compat/linux/arch/alpha/linux_machdep.c
264
error = copyout((void *)&sigframe, (void *)sfp, fsize);
sys/dev/pci/if_age.c
1636
uint32_t reg, fsize;
sys/dev/pci/if_age.c
1751
fsize = roundup(sc->age_max_frame_size, sizeof(uint64_t));
sys/dev/pci/if_age.c
1753
(((fsize / sizeof(uint64_t)) <<
sys/dev/pci/if_iwi.c
2263
hdr->fsize = le32toh(hdr->fsize);
sys/dev/pci/if_iwi.c
2265
if (size < sizeof(struct iwi_firmware_hdr) + hdr->bsize + hdr->usize + hdr->fsize) {
sys/dev/pci/if_iwi.c
2286
kfw->main_size = hdr->fsize;
sys/dev/pci/if_iwireg.h
162
uint32_t fsize; /* size of firmware image */
sys/fs/adosfs/adosfs.h
83
u_long fsize; /* (f) size of file in bytes */
sys/fs/adosfs/advfsops.c
438
ap->fsize = adoswordn(bp, ap->nwords - 47);
sys/fs/adosfs/advfsops.c
466
ap->fsize = namlen;
sys/fs/adosfs/advfsops.c
532
ap->fsize = adoswordn(bp, ap->nwords - 47);
sys/fs/adosfs/advfsops.c
584
uvm_vnp_setsize(vp, ap->fsize);
sys/fs/adosfs/advnops.c
174
fblks = howmany(ap->fsize, amp->dbsize);
sys/fs/adosfs/advnops.c
177
vap->va_size = ap->fsize;
sys/fs/adosfs/advnops.c
233
if (uio->uio_offset >= ap->fsize)
sys/fs/adosfs/advnops.c
245
vsize_t bytelen = MIN(ap->fsize - uio->uio_offset,
sys/fs/adosfs/advnops.c
265
diff = ap->fsize - uio->uio_offset;
sys/fs/hfs/hfs_vnops.c
807
uint64_t fsize; /* logical size of file */
sys/fs/hfs/hfs_vnops.c
815
fsize = hp->h_rec.file.rsrc_fork.logical_size;
sys/fs/hfs/hfs_vnops.c
817
fsize = hp->h_rec.file.data_fork.logical_size;
sys/fs/hfs/hfs_vnops.c
824
if (uio->uio_resid == 0 || uio->uio_offset >= fsize)
sys/fs/hfs/hfs_vnops.c
834
len = MIN(uio->uio_resid, fsize - uio->uio_offset);
sys/lib/libsa/dosfs.c
151
static off_t fsize(DOS_FS *, struct direntry *);
sys/lib/libsa/dosfs.c
289
if ((size = fsize(f->fs, &f->de)) == -1)
sys/lib/libsa/dosfs.c
410
if ((sb->st_size = fsize(f->fs, &f->de)) == -1)
sys/rump/librump/rumpvfs/rumpfs.c
333
uint64_t fsize;
sys/rump/librump/rumpvfs/rumpfs.c
345
if ((error = rumpuser_getfileinfo(hostpath, &fsize, &hft)) != 0)
sys/rump/librump/rumpvfs/rumpfs.c
356
size = fsize;
sys/rump/librump/rumpvfs/rumpfs.c
358
if (begin > fsize)
sys/rump/librump/rumpvfs/rumpfs.c
361
size = fsize - begin;
sys/rump/librump/rumpvfs/rumpfs.c
362
if (begin + size > fsize)
sys/rump/librump/rumpvfs/rumpfs.c
734
uint64_t fsize;
sys/rump/librump/rumpvfs/rumpfs.c
749
if ((error = rumpuser_getfileinfo(newpath, &fsize, &hft)) != 0){
sys/rump/librump/rumpvfs/rumpfs.c
761
NODEV, fsize, true);
sys/sys/disklabel.h
105
uint32_t fsize; /* FFS, ADOS: filesystem basic fragment size */
sys/sys/disklabel.h
108
#define p_fsize __partition_u2.fsize
sys/sys/disklabel.h
284
uint32_t fsize;
sys/sys/disklabel_rdb.h
119
uint32_t fsize; /* 20: file system block size */
sys/ufs/lfs/lfs_accessors.h
1209
LFS_DEF_SB_ACCESSOR(uint32_t, fsize)
tests/dev/scsipi/libscsitest/scsitest.c
213
uint64_t fsize;
tests/dev/scsipi/libscsitest/scsitest.c
216
if (rumpuser_getfileinfo(MYCDISO, &fsize, &ft, &error))
tests/dev/scsipi/libscsitest/scsitest.c
220
mycdsize = fsize / CDBLOCKSIZE;
usr.bin/mail/collect.c
186
if (fsize(nf) == 0) {
usr.bin/mail/collect.c
285
if (fsize(fp) == 0)
usr.bin/mail/collect.c
657
if (fsize(fbuf) == 0) {
usr.bin/mail/edit.c
194
mp->m_size = fsize(fp);
usr.bin/mail/extern.h
159
off_t fsize(FILE *);
usr.bin/mail/lex.c
278
mailsize = fsize(ibuf);
usr.bin/mail/lex.c
326
newsize = fsize(ibuf);
usr.bin/mail/mime_attach.c
666
if (fsize(fi)) {
usr.bin/mail/send.c
710
if (fsize(mtf) == 0) {
usr.bin/rump_allserver/rump_allserver.c
605
uint32_t fsize; /* FFS, ADOS:
usr.bin/rump_allserver/rump_allserver.c
609
#define p_fsize __partition_u2.fsize
usr.bin/utoppya/utoppya.c
320
init_progress(FILE *to, char *f, off_t fsize, off_t restart)
usr.bin/utoppya/utoppya.c
332
filesize = fsize;
usr.sbin/makefs/ffs.c
169
{ 'f', "fsize", &ffs_opts->fsize, OPT_INT32,
usr.sbin/makefs/ffs.c
197
ffs_opts->fsize= -1;
usr.sbin/makefs/ffs.c
347
if (ffs_opts->fsize == -1)
usr.sbin/makefs/ffs.c
348
ffs_opts->fsize = MAX(DFL_FRAGSIZE, fsopts->sectorsize);
usr.sbin/makefs/ffs.c
350
ffs_opts->bsize = MIN(DFL_BLKSIZE, 8 * ffs_opts->fsize);
usr.sbin/makefs/ffs.c
461
fs->bsize, fs->fsize, fs->cpg, fs->density);
usr.sbin/makefs/ffs.c
617
fsopts->size += roundup((x), ffs_opts->fsize); \
usr.sbin/makefs/ffs.h
47
int fsize; /* fragment size */
usr.sbin/makefs/ffs/mkfs.c
115
static int fsize; /* fragment size */
usr.sbin/makefs/ffs/mkfs.c
156
fsize = ffs_opts->fsize;
usr.sbin/makefs/ffs/mkfs.c
210
sblock.fs_fsize = fsize;