/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);
|
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
|
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);
|
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;
|
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
|
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
|
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"
|
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,
|
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());
|
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);
|
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
|
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) {
|
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) {
|