Symbol: strsuftoll
bin/dd/args.c
236
in.dbsz = out.dbsz = strsuftoll("block size", arg, 1, UINT_MAX);
bin/dd/args.c
243
cbsz = strsuftoll("conversion record size", arg, 1, UINT_MAX);
bin/dd/args.c
250
cpy_cnt = strsuftoll("block count", arg, 0, LLONG_MAX);
bin/dd/args.c
257
files_cnt = (u_int)strsuftoll("file count", arg, 0, UINT_MAX);
bin/dd/args.c
269
in.dbsz = strsuftoll("input block size", arg, 1, UINT_MAX);
bin/dd/args.c
308
out.dbsz = strsuftoll("output block size", arg, 1, UINT_MAX);
bin/dd/args.c
322
out.offset = strsuftoll("seek blocks", arg, 0, LLONG_MAX);
bin/dd/args.c
329
in.offset = strsuftoll("skip blocks", arg, 0, LLONG_MAX);
bin/dd/args.c
336
progress = strsuftoll("progress blocks", arg, 0, LLONG_MAX);
include/stdlib.h
345
long long strsuftoll(const char *, const char *, long long, long long);
lib/libc/stdlib/strsuftoll.c
119
strsuftoll(const char *desc, const char *val,
lib/libc/stdlib/strsuftoll.c
93
__weak_alias(strsuftoll, _strsuftoll)
sbin/tunefs/tunefs.c
155
maxbpg = strsuftoll(
sbin/tunefs/tunefs.c
161
avgfilesize = strsuftoll("average file size", optarg,
sbin/tunefs/tunefs.c
166
avgfpdir = strsuftoll(
sbin/tunefs/tunefs.c
172
logfilesize = strsuftoll("journal log file size",
sbin/tunefs/tunefs.c
177
minfree = strsuftoll("minimum percentage of free space",
sbin/tunefs/tunefs.c
217
secsize = strsuftoll("physical sector size",
tools/compat/compat_defs.h
628
long long strsuftoll(const char *, const char *, long long, long long);
usr.bin/audio/play/play.c
99
bufsize = strsuftoll("write buffer size", optarg,
usr.bin/audio/record/record.c
113
bufsize = strsuftoll("read buffer size", optarg,
usr.bin/midirecord/midirecord.c
117
bufsize = strsuftoll("read buffer size", optarg,
usr.bin/progress/progress.c
103
buffersize = (size_t) strsuftoll("buffer size", optarg,
usr.bin/progress/progress.c
114
filesize = strsuftoll("input size", optarg, 0,
usr.bin/rump_allserver/rump_allserver.c
212
flen = strsuftoll("-d size",
usr.bin/rump_allserver/rump_allserver.c
234
foffset = strsuftoll("-d offset", value,
usr.bin/vndcompress/main.c
101
O->checkpoint_blocks = strsuftoll("checkpoint blocks",
usr.bin/vndcompress/main.c
112
O->length = strsuftoll("length", optarg,
usr.bin/vndcompress/main.c
119
O->end_block = strsuftoll("end block", optarg,
usr.bin/vndcompress/main.c
137
O->window_size = strsuftoll("window size", optarg,
usr.bin/vndcompress/main.c
73
O->blocksize = strsuftoll("block size", optarg,
usr.bin/vndcompress/vndcompress.c
418
strsuftoll("block size", argv[2], MIN_BLOCKSIZE,
usr.sbin/fssconfig/fssconfig.c
152
fss.fss_csize = strsuftoll("cluster size", argv[3], 0, INT_MAX);
usr.sbin/fssconfig/fssconfig.c
156
bssize = strsuftoll("bs size", argv[4], 0, LLONG_MAX);
usr.sbin/makefs/makefs.c
162
strsuftoll("free block percentage",
usr.sbin/makefs/makefs.c
166
strsuftoll("free blocks",
usr.sbin/makefs/makefs.c
180
strsuftoll("free file percentage",
usr.sbin/makefs/makefs.c
184
strsuftoll("free files",
usr.sbin/makefs/makefs.c
199
strsuftoll("minimum size", optarg, 1LL, LLONG_MAX);
usr.sbin/makefs/makefs.c
211
strsuftoll("maximum size", optarg, 1LL, LLONG_MAX);
usr.sbin/makefs/makefs.c
216
strsuftoll("offset", optarg, 0LL, LLONG_MAX);
usr.sbin/makefs/makefs.c
238
strsuftoll("size", optarg, 1LL, LLONG_MAX);
usr.sbin/makefs/makefs.c
243
(int)strsuftoll("sector size", optarg,
usr.sbin/makefs/makefs.c
407
*(type *)options[i].value = (type)strsuftoll(options[i].desc, val, \