Symbol: UINTMAX_MAX
bin/pax/gen_subs.c
332
return UINTMAX_MAX;
bin/pax/gen_subs.c
339
if (tval > (UINTMAX_MAX/256))
bin/pax/gen_subs.c
340
return UINTMAX_MAX;
common/lib/libc/stdlib/strtoumax.c
60
#define __UINT_MAX UINTMAX_MAX
lib/libc/locale/wcstoumax.c
46
#define __UINT_MAX UINTMAX_MAX
lib/libc/time/private.h
491
# ifndef UINTMAX_MAX
lib/libc/time/zic.c
1601
uint_fast64_t unfair_min = - ((UINTMAX_MAX % base__6 + 1) % base__6);
sbin/gpt/main.c
191
if (mediasz > UINTMAX_MAX /
sbin/gpt/main.c
203
if (mediasz >= UINTMAX_MAX >> 10)
sbin/gpt/main.c
209
if (mediasz >= UINTMAX_MAX >> 20)
sbin/gpt/main.c
215
if (mediasz >= UINTMAX_MAX >> 30)
sbin/gpt/main.c
221
if (mediasz >= UINTMAX_MAX >> 40)
sbin/gpt/main.c
227
if (mediasz >= UINTMAX_MAX >> 50)
sbin/gpt/main.c
256
if (mediasz / 512 > UINTMAX_MAX / secsz)
sbin/gpt/main.c
298
if (mediasz / 512 > UINTMAX_MAX / gpt->secsz)
tests/lib/libprop/t_proplib.c
360
u1 = prop_number_create_unsigned(UINTMAX_MAX);
tests/lib/libprop/t_proplib.c
363
ATF_REQUIRE(prop_number_unsigned_value(u1) == UINTMAX_MAX);
tests/lib/libprop/t_proplib.c
364
ATF_REQUIRE(prop_number_equals_unsigned(u1, UINTMAX_MAX) == true);
tests/lib/libprop/t_proplib.c
375
ATF_REQUIRE(prop_number_unsigned_value(u3) == UINTMAX_MAX);
tests/lib/libutil/t_strpct.c
180
h_strpct(100, UINTMAX_MAX, UINTMAX_MAX, 0, "100");
tests/lib/libutil/t_strpct.c
181
h_strpct(100, UINTMAX_MAX, UINTMAX_MAX, 1, "100.0");
tests/lib/libutil/t_strpct.c
182
h_strpct(100, UINTMAX_MAX, UINTMAX_MAX, 5, "100.00000");
tests/lib/libutil/t_strpct.c
183
h_strpct(100, UINTMAX_MAX, UINTMAX_MAX, 10, "100.0000000000");
tests/lib/libutil/t_strpct.c
184
h_strpct(100, UINTMAX_MAX, UINTMAX_MAX, 15, "100.000000000000000");
tests/lib/libutil/t_strpct.c
185
h_strpct(100, UINTMAX_MAX, UINTMAX_MAX, 20, "100.00000000000000000000");
tests/lib/libutil/t_strpct.c
186
h_strpct(100, UINTMAX_MAX, UINTMAX_MAX, 25, "100.0000000000000000000000000");
tests/lib/libutil/t_strpct.c
188
h_strpct(100, UINTMAX_MAX - 1, UINTMAX_MAX, 25, "99.9999999999999999945789891");
tests/lib/libutil/t_strpct.c
189
h_strpct(100, 1, (UINTMAX_MAX >> 1) + 1, 70,
tests/lib/libutil/t_strpct.c
191
h_strpct(100, UINTMAX_MAX, 1, 10, "1844674407370955161500.0000000000");
tests/lib/libutil/t_strpct.c
192
h_strpct(100, 1, UINTMAX_MAX, 30, "0.000000000000000005421010862427");
usr.sbin/chroot/chroot.c
74
if (errno == ERANGE && *num == UINTMAX_MAX)
usr.sbin/inetd/ratelimit.c
493
#if UINTMAX_MAX >= UINT64_MAX
usr.sbin/pf/pfs/parse.y
405
if (errno == ERANGE && u == UINTMAX_MAX)