HomeSort by: relevance | last modified time | path
    Searched defs:fsize (Results 1 - 25 of 27) sorted by relevancy

1 2

  /src/sys/arch/x68k/x68k/
kgdb_glue.c 87 u_int fsize, s; local in function:kgdb_trap_glue
97 fsize = sizeof(frame) - sizeof(frame.F_u) + exframesize[frame.f_format];
98 frame.f_regs[SP] = (u_long)&frame + fsize;
106 roundup(fsize, sizeof(u_long));
108 copywords((u_long *)&frame, (u_long *)nsp, fsize);
131 osp = ((struct frame *)nsp)->f_regs[SP] - fsize;
132 copywords((u_long *)nsp, (u_long *)osp, fsize);
  /src/distrib/utils/embedded/conf/
wii.conf 9 fsize=4096 key
  /src/sys/compat/linux/arch/alpha/
linux_machdep.c 117 int fsize, rndfsize; local in function:setup_linux_rt_sigframe
126 fsize = sizeof(struct linux_rt_sigframe);
127 rndfsize = ((fsize + 15) / 16) * 16;
172 error = copyout((void *)&sigframe, (void *)sfp, fsize);
212 int fsize, rndfsize; local in function:setup_linux_sigframe
221 fsize = sizeof(struct linux_sigframe);
222 rndfsize = ((fsize + 15) / 16) * 16;
264 error = copyout((void *)&sigframe, (void *)sfp, fsize);
  /src/tests/dev/scsipi/libscsitest/
scsitest.c 213 uint64_t fsize; local in function:scsitest_match
216 if (rumpuser_getfileinfo(MYCDISO, &fsize, &ft, &error))
220 mycdsize = fsize / CDBLOCKSIZE;
  /src/usr.sbin/makefs/
ffs.h 47 int fsize; /* fragment size */ member in struct:__anon6ccfc86b0108
  /src/lib/libukfs/
ukfs_int_disklabel.h 137 uint32_t fsize; /* FFS, ADOS: member in union:ukfs__disklabel::ukfs__partition::__anone7ac4155030a
141 #define p_fsize __partition_u2.fsize
  /src/sbin/newfs_ext2fs/
newfs_ext2fs.c 109 uint fsize = 0; /* fragment size */ variable in typeref:typename:uint
184 fsize = strsuftoi64("fragment size",
366 bsize = fsize;
376 if (fsize == 0)
377 fsize = bsize;
462 "\t-f fsize\tfragment size\n"
  /src/sbin/newfs_lfs/
newfs.c 86 int fsize = 0; /* fragment size */ variable in typeref:typename:int
236 fsize = strsuftoi64("fragment size", optarg, LFS_MINBLOCKSIZE, INT64_MAX, NULL);
393 r = make_lfs(fso, secsize, &dkw, minfree, bsize, fsize, lfs_segsize,
make_lfs.c 405 int fsize; /* Fragment size */ local in function:make_lfs
468 if (!(fsize = frag_size)) {
469 fsize = DFL_LFSFRAG;
471 fsize = SMALL_LFSFRAG;
480 ibsize = fsize;
481 if (ibsize <= 0 || ibsize % fsize)
486 /* Sanity check: fsize<=bsize<ssize */
487 if (fsize > bsize) {
488 /* Only complain if fsize was explicitly set */
491 fsize = bsize
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_posix.cc 202 uptr fsize = internal_filesize(fd); local in function:__sanitizer::MapFileToMemory
203 CHECK_NE(fsize, (uptr)-1);
204 CHECK_GT(fsize, 0);
205 *buff_size = RoundUpTo(fsize, GetPageSizeCached());
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_libc_test.cc 133 uptr fsize = internal_filesize(fd); local in function:TEST
134 EXPECT_EQ(len1 + len2, fsize);
140 EXPECT_EQ(fsize, (uptr)st3.st_size);
  /src/usr.bin/mail/
fio.c 387 fsize(FILE *iob) function in typeref:typename:PUBLIC off_t
  /src/bin/cp/
utils.c 199 size_t fsize = (size_t)fs->st_size; local in function:copy_file
200 p = mmap(NULL, fsize, PROT_READ, MAP_FILE|MAP_SHARED,
215 remainder = fsize;
221 if (write(to_fd, &p[fsize - remainder],
233 if (munmap(p, fsize) < 0) {
  /src/sys/fs/adosfs/
adosfs.h 83 u_long fsize; /* (f) size of file in bytes */ member in struct:anode
  /src/sys/fs/hfs/
hfs_vnops.c 807 uint64_t fsize; /* logical size of file */ local in function:hfs_vop_read
815 fsize = hp->h_rec.file.rsrc_fork.logical_size;
817 fsize = hp->h_rec.file.data_fork.logical_size;
824 if (uio->uio_resid == 0 || uio->uio_offset >= fsize)
834 len = MIN(uio->uio_resid, fsize - uio->uio_offset);
  /src/usr.sbin/makefs/ffs/
mkfs.c 115 static int fsize; /* fragment size */ variable in typeref:typename:int
156 fsize = ffs_opts->fsize;
210 sblock.fs_fsize = fsize;
  /src/sys/lib/libsa/
dosfs.c 151 static off_t fsize(DOS_FS *, struct direntry *);
289 if ((size = fsize(f->fs, &f->de)) == -1)
410 if ((sb->st_size = fsize(f->fs, &f->de)) == -1)
677 fsize(DOS_FS *fs, struct direntry *de) function in typeref:typename:off_t
  /src/sbin/newfs/
newfs.c 215 int fsize = 0; /* fragment size */ variable in typeref:typename:int
362 fsize = strsuftoi64("fragment size",
646 if (fsize == 0) {
647 fsize = bsize / DFL_FRAG_BLK;
648 if (fsize <= 0) {
650 fsize = APPLEUFS_DFL_FRAGSIZE;
653 fsize = S_DFL_FRAGSIZE;
655 fsize = M_DFL_FRAGSIZE;
657 fsize = L_DFL_FRAGSIZE;
659 fsize = LL_DFL_FRAGSIZE
    [all...]
  /src/sys/dev/pci/
if_age.c 1636 uint32_t reg, fsize; local in function:age_init
1751 fsize = roundup(sc->age_max_frame_size, sizeof(uint64_t));
1753 (((fsize / sizeof(uint64_t)) <<
  /src/libexec/tftpd/
tftpd.c 545 unsigned long fsize; local in function:tsize_handler
555 fsize = strtoul(val, &endp, 10);
556 if ((fsize == ULONG_MAX && errno == ERANGE) || *endp) {
565 if (fsize > (unsigned long) 65535 * 65464) {
576 tftp_tsize = fsize;
578 * We will report this later -- either replying with the fsize (WRQ)
  /src/sys/sys/
disklabel_rdb.h 119 uint32_t fsize; /* 20: file system block size */ member in struct:ados_environ
disklabel.h 105 uint32_t fsize; /* FFS, ADOS: filesystem basic fragment size */ member in union:partition::__anond9b3f2ea010a
108 #define p_fsize __partition_u2.fsize
284 uint32_t fsize; member in union:olddisklabel::opartition::__anond9b3f2ea070a
  /src/usr.bin/rump_allserver/
rump_allserver.c 605 uint32_t fsize; /* FFS, ADOS: member in union:rumpserver_disklabel::rumpserver_partition::__anon80e292a3030a
609 #define p_fsize __partition_u2.fsize
  /src/distrib/sparc/
install.md 166 # size offset fstype [fsize bsize cpg]
  /src/distrib/mvme68k/miniroot/
install.md 159 # size offset fstype [fsize bsize cpg]

Completed in 25 milliseconds

1 2