Symbol: INT64_MAX
bin/expr/expr.y
190
if ((r > 0 && l > INT64_MAX - r) ||
bin/expr/expr.y
197
(r < 0 && l > INT64_MAX + r))
bin/expr/expr.y
228
(r > 0 && l > INT64_MAX / r) ||
common/lib/libprop/prop_number.c
544
TEMPLATE(int64, int64_t, INT64_MIN, INT64_MAX)
common/lib/libprop/prop_number.c
613
(pn->pn_value.pnv_signed < 0 || val > INT64_MAX))
common/lib/libprop/prop_number.c
664
if ((pnv->pnv_signed == INT64_MAX || pnv->pnv_signed == INT64_MIN) &&
lib/libbluetooth/sdp_put.c
219
if (value > INT64_MAX || value < INT64_MIN)
lib/libbluetooth/sdp_set.c
152
|| value > INT64_MAX
lib/libc/gen/humanize_number.c
107
if (bytes < INT64_MAX / 100)
lib/libc/gen/humanize_number.c
97
if (-bytes < INT64_MAX / 100)
regress/lib/libc/divrem/divremtest.c
180
if (a64 != INT64_MAX || b64 != 1)
sbin/ifconfig/l2tp.c
72
"remote cookie", INT64_MIN, INT64_MAX, 10, setl2tpcookie, "l2tpremotecookie",
sbin/ifconfig/l2tp.c
80
"local cookie", INT64_MIN, INT64_MAX, 10, NULL, "l2tplocalcookie",
sbin/newfs/newfs.c
419
optarg, INT64_MIN, INT64_MAX, &byte_sized);
sbin/newfs_ext2fs/newfs_ext2fs.c
202
optarg, INT64_MIN, INT64_MAX, &byte_sized);
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
248
fssize = strsuftoi64("file system size", optarg, 0, INT64_MAX, &byte_sized);
share/examples/puffs/pgfs/pgfs_puffs.c
1239
sbp->f_blocks = INT64_MAX / 100 / sbp->f_frsize;
share/examples/puffs/pgfs/pgfs_puffs.c
502
if ((uint64_t)(INT64_MAX - offset) < *resid || /* int64 overflow */
sys/arch/x86/x86/tsc.c
319
val = INT64_MAX;
sys/dev/pci/veritefb.c
837
mindiff = INT64_MAX;
sys/fs/nfs/client/nfs_clport.c
984
if (sfp->sf_ffiles > INT64_MAX)
sys/fs/nfs/client/nfs_clport.c
985
sbp->f_ffree = INT64_MAX;
sys/fs/nfs/client/nfs_clrpcops.c
5183
nfhp->nfh_len, iomode, (uint64_t)0, INT64_MAX,
sys/fs/nfs/client/nfs_clrpcops.c
5193
nfhp->nfh_len, iomode, off, INT64_MAX,
sys/fs/tmpfs/tmpfs_subr.c
284
uao_create(INT64_MAX - PAGE_SIZE, 0);
sys/kern/kern_entropy.c
1720
kn->kn_data = MIN(INT64_MAX, SSIZE_MAX);
sys/kern/kern_time.c
653
if (delta->tv_sec > INT64_MAX/1000000 - 1) {
sys/kern/kern_time.c
654
time_adjtime = INT64_MAX;
sys/kern/subr_time_arith.c
456
return ts->tv_sec < INT64_MAX/1000000000 ||
sys/kern/subr_time_arith.c
457
(ts->tv_sec == INT64_MAX/1000000000 &&
sys/kern/subr_time_arith.c
458
ts->tv_nsec <= INT64_MAX - (INT64_MAX/1000000000)*1000000000);
sys/kern/sys_memfd.c
107
mfd->mfd_uobj = uao_create(INT64_MAX - PAGE_SIZE, 0); /* same as tmpfs */
sys/uvm/uvm_aobj.c
1317
end = INT64_MAX;
tests/kernel/t_time_arith.c
291
[56] = {{.it_value = {INT64_MAX - 1,0}, .it_interval = {1,0}},
tests/kernel/t_time_arith.c
292
{INT64_MAX - 2,999999999}, {INT64_MAX,0}, 0,
tests/kernel/t_time_arith.c
294
[57] = {{.it_value = {INT64_MAX - 1,0}, .it_interval = {1,0}},
tests/kernel/t_time_arith.c
295
{INT64_MAX - 1,0}, {INT64_MAX,0}, 0, NULL},
tests/kernel/t_time_arith.c
296
[58] = {{.it_value = {INT64_MAX - 1,0}, .it_interval = {1,0}},
tests/kernel/t_time_arith.c
297
{INT64_MAX - 1,1}, {INT64_MAX,0}, 0, NULL},
tests/kernel/t_time_arith.c
298
[59] = {{.it_value = {INT64_MAX - 1,0}, .it_interval = {1,0}},
tests/kernel/t_time_arith.c
299
{INT64_MAX - 1,999999999}, {INT64_MAX,0}, 0, NULL},
tests/kernel/t_time_arith.c
300
[60] = {{.it_value = {INT64_MAX - 1,0}, .it_interval = {1,0}},
tests/kernel/t_time_arith.c
301
{INT64_MAX,0}, {0,0}, 0,
tests/kernel/t_time_arith.c
303
[61] = {{.it_value = {INT64_MAX - 1,0}, .it_interval = {1,0}},
tests/kernel/t_time_arith.c
304
{INT64_MAX,1}, {0,0}, 0,
tests/kernel/t_time_arith.c
306
[62] = {{.it_value = {INT64_MAX - 1,0}, .it_interval = {1,0}},
tests/kernel/t_time_arith.c
307
{INT64_MAX,999999999}, {0,0}, 0,
tests/kernel/t_time_arith.c
310
[63] = {{.it_value = {INT64_MAX,0}, .it_interval = {1,0}},
tests/kernel/t_time_arith.c
311
{INT64_MAX - 1,1}, {0,0}, 0,
tests/kernel/t_time_arith.c
313
[64] = {{.it_value = {INT64_MAX,0}, .it_interval = {1,0}},
tests/kernel/t_time_arith.c
314
{INT64_MAX - 1,999999999}, {0,0}, 0,
tests/kernel/t_time_arith.c
316
[65] = {{.it_value = {INT64_MAX,0}, .it_interval = {1,0}},
tests/kernel/t_time_arith.c
317
{INT64_MAX,0}, {0,0}, 0,
tests/kernel/t_time_arith.c
319
[66] = {{.it_value = {INT64_MAX,0}, .it_interval = {1,0}},
tests/kernel/t_time_arith.c
320
{INT64_MAX,1}, {0,0}, 0,
tests/kernel/t_time_arith.c
322
[67] = {{.it_value = {INT64_MAX,0}, .it_interval = {1,0}},
tests/kernel/t_time_arith.c
323
{INT64_MAX,999999999}, {0,0}, 0,
tests/lib/libbluetooth/t_sdp_get.c
430
ATF_CHECK_EQ(value, INT64_MAX);
tests/lib/libbluetooth/t_sdp_get.c
442
ATF_CHECK_EQ(value, INT64_MAX);
tests/lib/libbluetooth/t_sdp_put.c
492
ATF_REQUIRE(sdp_put_int(&test, (intmax_t)INT64_MAX));
tests/lib/libbluetooth/t_sdp_put.c
657
ATF_REQUIRE(sdp_put_int64(&test, (int64_t)INT64_MAX));
tests/lib/libc/gen/t_humanize_number.c
275
rv = humanize_number(buf, 10, INT64_MAX, "", HN_AUTOSCALE, HN_NOSPACE);
tests/lib/libc/sys/t_posix_fadvise.c
139
INT64_MAX-getpagesize(), getpagesize(), POSIX_FADV_NORMAL), 0);
tests/lib/libc/sys/t_posix_fadvise.c
141
INT64_MAX-getpagesize(), getpagesize(), POSIX_FADV_SEQUENTIAL), 0);
tests/lib/libc/sys/t_posix_fadvise.c
143
INT64_MAX-getpagesize(), getpagesize(), POSIX_FADV_RANDOM), 0);
tests/lib/libc/sys/t_posix_fadvise.c
145
INT64_MAX-getpagesize(), getpagesize(), POSIX_FADV_WILLNEED), 0);
tests/lib/libc/sys/t_posix_fadvise.c
147
INT64_MAX-getpagesize(), getpagesize(), POSIX_FADV_NOREUSE), 0);
tests/lib/libc/sys/t_posix_fadvise.c
151
INT64_MAX-getpagesize(), getpagesize(), POSIX_FADV_DONTNEED), 0);
tests/lib/libprop/t_proplib.c
486
prop_number_t n_int64_max = prop_number_create_signed(INT64_MAX);
tests/lib/libprop/t_proplib.c
678
val.v_int64 == INT64_MAX);
tests/lib/libprop/t_proplib.c
684
val.v_uint64 == INT64_MAX);
usr.bin/sdpquery/print.c
1907
if (v > INT64_MAX) {
usr.bin/sdpquery/print.c
1909
v = INT64_MAX;
usr.bin/vmstat/drvstats.c
106
|| cur.rxfer[i] - last.rxfer[i] > INT64_MAX
usr.bin/vmstat/drvstats.c
107
|| cur.wxfer[i] - last.wxfer[i] > INT64_MAX
usr.bin/vmstat/drvstats.c
108
|| cur.seek[i] - last.seek[i] > INT64_MAX
usr.bin/xlint/lint1/tree.c
232
c.smax = width < 64 ? (int64_t)vbits : INT64_MAX;
usr.bin/xlint/lint1/tree.c
269
c.smax = INT64_MAX;
usr.bin/xlint/lint1/tree.c
2799
&& ((lc.smin == 0 && lc.smax != 0 && lc.smax != INT64_MAX
usr.bin/xlint/lint1/tree.c
2801
|| (lc.smin != INT64_MAX && lc.smax != INT64_MIN
usr.bin/xlint/lint1/tree.c
287
c.smax = INT64_MAX;
usr.bin/xlint/lint1/tree.c
313
c.smax = INT64_MAX;
usr.bin/xlint/lint1/tree.c
336
c.smax = INT64_MAX;
usr.bin/xlint/lint1/tree.c
396
c.smax = INT64_MAX;
usr.bin/xlint/lint1/tree.c
514
c.smin = maximum <= INT64_MAX ? (int64_t)minimum : INT64_MIN;
usr.bin/xlint/lint1/tree.c
515
c.smax = maximum <= INT64_MAX ? (int64_t)maximum : INT64_MAX;