Symbol: strsuftoi64
sbin/newfs/newfs.c
140
static int64_t strsuftoi64(const char *, const char *, int64_t, int64_t, int *);
sbin/newfs/newfs.c
321
Oflag = strsuftoi64("format", optarg, 0, 2, NULL);
sbin/newfs/newfs.c
325
sectorsize = strsuftoi64("sector size",
sbin/newfs/newfs.c
337
verbosity = strsuftoi64("verbose", optarg, 0, 4, NULL);
sbin/newfs/newfs.c
343
maxcontig = strsuftoi64("maximum contiguous blocks",
sbin/newfs/newfs.c
347
bsize = strsuftoi64("block size",
sbin/newfs/newfs.c
351
maxbsize = strsuftoi64("maximum extent size",
sbin/newfs/newfs.c
355
maxbpg = strsuftoi64(
sbin/newfs/newfs.c
360
fsize = strsuftoi64("fragment size",
sbin/newfs/newfs.c
367
avgfilesize = strsuftoi64("average file size",
sbin/newfs/newfs.c
372
avgfpdir = strsuftoi64("expected files per directory",
sbin/newfs/newfs.c
376
density = strsuftoi64("bytes per inode",
sbin/newfs/newfs.c
380
minfree = strsuftoi64("free space %",
sbin/newfs/newfs.c
384
num_inodes = strsuftoi64("number of inodes",
sbin/newfs/newfs.c
418
fssize = strsuftoi64("file system size",
sbin/newfs_ext2fs/newfs_ext2fs.c
160
Oflag = strsuftoi64("format", optarg, 0, 1, NULL);
sbin/newfs_ext2fs/newfs_ext2fs.c
167
sectorsize = strsuftoi64("sector size",
sbin/newfs_ext2fs/newfs_ext2fs.c
175
verbosity = strsuftoi64("verbose", optarg, 0, 4, NULL);
sbin/newfs_ext2fs/newfs_ext2fs.c
181
bsize = strsuftoi64("block size",
sbin/newfs_ext2fs/newfs_ext2fs.c
185
fsize = strsuftoi64("fragment size",
sbin/newfs_ext2fs/newfs_ext2fs.c
189
density = strsuftoi64("bytes per inode",
sbin/newfs_ext2fs/newfs_ext2fs.c
193
minfree = strsuftoi64("free space %",
sbin/newfs_ext2fs/newfs_ext2fs.c
197
num_inodes = strsuftoi64("number of inodes",
sbin/newfs_ext2fs/newfs_ext2fs.c
201
fssize = strsuftoi64("file system size",
sbin/newfs_ext2fs/newfs_ext2fs.c
74
static int64_t strsuftoi64(const char *, const char *, int64_t, int64_t, int *);
sbin/newfs_lfs/newfs.c
106
static int64_t strsuftoi64(const char *, const char *, int64_t, int64_t, int *);
sbin/newfs_lfs/newfs.c
197
lfs_segsize = strsuftoi64("segment size", optarg, LFS_MINSEGSIZE, INT64_MAX, NULL);
sbin/newfs_lfs/newfs.c
206
interleave = strsuftoi64("interleave", optarg, 0, INT64_MAX, NULL);
sbin/newfs_lfs/newfs.c
211
minfreeseg = strsuftoi64("minfreeseg", optarg, 0, INT64_MAX, NULL);
sbin/newfs_lfs/newfs.c
217
start = strsuftoi64("start", optarg, 0, INT64_MAX, NULL);
sbin/newfs_lfs/newfs.c
220
resvseg = strsuftoi64("resvseg", optarg, 0, INT64_MAX, NULL);
sbin/newfs_lfs/newfs.c
223
secsize = strsuftoi64("sector size", optarg, 1, INT64_MAX, NULL);
sbin/newfs_lfs/newfs.c
233
bsize = strsuftoi64("block size", optarg, LFS_MINBLOCKSIZE, INT64_MAX, NULL);
sbin/newfs_lfs/newfs.c
236
fsize = strsuftoi64("fragment size", optarg, LFS_MINBLOCKSIZE, INT64_MAX, NULL);
sbin/newfs_lfs/newfs.c
239
ibsize = strsuftoi64("inode block size", optarg, LFS_MINBLOCKSIZE, INT64_MAX, NULL);
sbin/newfs_lfs/newfs.c
242
minfree = strsuftoi64("free space %", optarg, 0, 99, NULL);
sbin/newfs_lfs/newfs.c
245
roll_id = strsuftoi64("roll-forward id", optarg, 1, UINT_MAX, NULL);
sbin/newfs_lfs/newfs.c
248
fssize = strsuftoi64("file system size", optarg, 0, INT64_MAX, &byte_sized);
sbin/newfs_lfs/newfs.c
251
version = strsuftoi64("file system version", optarg, 1, LFS_VERSION, NULL);