Symbol: strtoimax
bin/kill/kill.c
220
n = strtoimax(sn, &ep, 10);
bin/kill/kill.c
237
n = strtoimax(s, &ep, 10);
bin/pax/pax.h
278
#define STRTOOFFT(x,y,z) strtoimax(x,y,z)
bin/sh/arith_token.c
89
a_t_val.val = strtoimax(buf, &end, 0);
bin/sh/arithmetic.c
130
result = strtoimax(str, &p, 0);
bin/sh/mystring.c
120
if (!is_digit(*s) || ((n = strtoimax(s, &ep, 10)),
bin/sh/var.c
1753
random_val = strtoimax(vp->text+vp->name_len+1,NULL,0);
common/lib/libc/stdlib/strtoi.c
62
#define __WRAPPED strtoimax
common/lib/libc/stdlib/strtoimax.c
58
#define _FUNCNAME strtoimax
common/lib/libc/stdlib/strtoimax.c
66
__weak_alias(strtoimax, _strtoimax)
include/inttypes.h
46
intmax_t strtoimax(const char * __restrict,
lib/libc/gen/sysctlgetmibinfo.c
511
q = strtoimax(token, &t, 0);
lib/libc/time/private.h
459
# ifndef strtoimax
lib/libc/time/zdump.c
465
lo = strtoimax(cutarg, &loend, 10);
lib/libc/time/zdump.c
470
&& (hi = strtoimax(loend + 1, &hiend, 10),
lib/libc/time/zdump.c
485
lo = strtoimax(cuttimes, &loend, 10);
lib/libc/time/zdump.c
494
&& (hi = strtoimax(loend + 1, &hiend, 10),
lib/libc/time/zic.c
1198
lo = strtoimax(timerange + 1, &lo_end, 10);
lib/libc/time/zic.c
1205
hi = strtoimax(lo_end + 2, &hi_end, 10);
lib/libc/time/zic.c
1224
redundant = strtoimax(opt + 1, &opt_end, 10);
libexec/comsat/comsat.c
197
offset = val = strtoimax(cp + 1, &fn, 10);
sbin/ifconfig/parse.c
197
val = strtoimax(arg, &end, pi->pi_base);
share/examples/puffs/pgfs/pgfs_db.c
513
i = strtoimax(str, &ep, 10);
sys/lib/libkern/libkern.h
467
intmax_t strtoimax(const char *, char **, int);
sys/stand/efiboot/efiblock.c
94
dev = strtoimax(full_path + 2, &ep, 10);
sys/stand/efiboot/efifile.c
46
vol = strtoimax(fname + 2, &ep, 10);
sys/stand/efiboot/efinet.c
543
dev = strtoimax(full_path + 3, &ep, 10);
tests/fs/cd9660/h_hexdump_r.c
67
noff = (off_t)strtoimax(line + m[1].rm_so, NULL, 16);
tests/fs/cd9660/h_hexdump_r.c
73
noff = (off_t)strtoimax(line + m[1].rm_so, NULL, 16);
tests/lib/libc/stdlib/t_strtol.c
119
ji = strtoimax(t[i].str, NULL, t[i].base);
tests/lib/libc/stdlib/t_strtol.c
175
CHECK(ji, "%jd", strtoimax);
tests/lib/libc/stdlib/t_strtol.c
211
ji = strtoimax(t[i].str, NULL, t[i].base);
tests/lib/libc/stdlib/t_strtol.c
292
ji = strtoimax(t[i].str, NULL, t[i].base);
usr.bin/diff3/diff3.c
215
a = b = (int)strtoimax(p, &p, 10);
usr.bin/diff3/diff3.c
218
b = (int)strtoimax(p, &p, 10);
usr.bin/diff3/diff3.c
221
c = d = (int)strtoimax(p, &p, 10);
usr.bin/diff3/diff3.c
224
d = (int)strtoimax(p, &p, 10);
usr.bin/head/head.c
91
bytecnt = strtoimax(optarg, &ep, 10);
usr.bin/head/head.c
99
linecnt = strtoimax(optarg, &ep, 10);
usr.bin/printf/printf.c
750
val = strtoimax(cp, &ep, 0);
usr.bin/progress/progress.c
166
strtoimax(buf, &cp, 10);
usr.bin/progress/progress.c
167
filesize = strtoimax(cp, NULL, 10);
usr.sbin/flashctl/flashctl.c
238
*num = strtoimax(str, &endptr, 16);
usr.sbin/flashctl/flashctl.c
242
*num = strtoimax(str, &endptr, 10);