Home
last modified time | relevance | path

Searched refs:UINT64_MAX (Results 1 – 25 of 138) sorted by relevance

123456

/netbsd/src/external/gpl2/xcvs/dist/lib/
Dstdint_.h162 #define UINT64_MAX 18446744073709551615UL macro
165 #define UINT64_MAX 18446744073709551615ULL macro
168 #define UINT64_MAX 18446744073709551615ui64 macro
186 #define UINT_LEAST64_MAX UINT64_MAX
203 #define UINT_FAST64_MAX UINT64_MAX
217 #define UINTMAX_MAX UINT64_MAX
/netbsd/src/common/lib/libc/gen/
Drpst.c98 return UINT64_MAX; in rpst_height2max()
612 uint64_t min_y = UINT64_MAX; in main()
614 uint64_t min_x = UINT64_MAX; in main()
623 assert(NULL == rpst_iterate_first(&t, UINT64_MAX, 0, UINT64_MAX, &it)); in main()
677 assert(min_y == 0 || 0 == query(min_y - 1, 0, UINT64_MAX)); in main()
678 assert(max_x == UINT64_MAX || in main()
679 0 == query(UINT64_MAX, max_x + 1, UINT64_MAX)); in main()
680 assert(min_x == 0 || 0 == query(UINT64_MAX, 0, min_x - 1)); in main()
685 done = query(UINT64_MAX, 0, UINT64_MAX); in main()
695 query(UINT64_MAX, 10, 10); in main()
/netbsd/src/tests/lib/libc/sys/
Dt_eventfd.c329 ATF_REQUIRE(eventfd_write(efd, UINT64_MAX - 1) == 0); in ATF_TC_BODY()
360 ATF_REQUIRE(kev[0].data == (int64_t)(UINT64_MAX - 1)); in ATF_TC_BODY()
403 eventfd_write(ctx->efd, UINT64_MAX - 1) == -1); in eventfd_select_poll_kevent_block_helper()
437 eventfd_write(ctx->efd, UINT64_MAX - 1) == -1); in eventfd_select_poll_kevent_block_helper()
466 ATF_REQUIRE(kev[0].data == (int64_t)(UINT64_MAX - 1)); in eventfd_select_poll_kevent_block_helper()
476 eventfd_write(ctx->efd, UINT64_MAX - 1) == -1); in eventfd_select_poll_kevent_block_helper()
529 ATF_REQUIRE(eventfd_write(ctx.efd, UINT64_MAX - 1) == 0); in ATF_TC_BODY()
551 ATF_REQUIRE(efd_value == UINT64_MAX - 1); in ATF_TC_BODY()
571 efd_value = UINT64_MAX - 1; in ATF_TC_BODY()
572 ATF_REQUIRE(eventfd_write(ctx.efd, UINT64_MAX - 1) == 0); in ATF_TC_BODY()
[all …]
/netbsd/src/external/public-domain/xz/dist/src/common/
Dsysdefs.h102 #ifndef UINT64_MAX
103 # define UINT64_MAX UINT64_C(18446744073709551615) macro
120 # define SIZE_MAX UINT64_MAX
125 #if SIZE_MAX != UINT32_MAX && SIZE_MAX != UINT64_MAX
/netbsd/src/external/public-domain/xz/dist/src/liblzma/common/
Dstream_encoder_mt.c23 #define BLOCK_SIZE_MAX (UINT64_MAX / LZMA_THREADS_MAX)
953 #if SIZE_MAX < UINT64_MAX in stream_encoder_mt_init()
962 if (lzma_raw_encoder_memusage(filters) == UINT64_MAX) in stream_encoder_mt_init()
1106 return UINT64_MAX; in lzma_stream_encoder_mt_memusage()
1113 if (filters_memusage == UINT64_MAX) in lzma_stream_encoder_mt_memusage()
1114 return UINT64_MAX; in lzma_stream_encoder_mt_memusage()
1121 if (outq_memusage == UINT64_MAX) in lzma_stream_encoder_mt_memusage()
1122 return UINT64_MAX; in lzma_stream_encoder_mt_memusage()
1129 if (UINT64_MAX - total_memusage < inbuf_memusage) in lzma_stream_encoder_mt_memusage()
1130 return UINT64_MAX; in lzma_stream_encoder_mt_memusage()
[all …]
Dfilter_common.c302 return UINT64_MAX; in lzma_raw_coder_memusage()
312 return UINT64_MAX; // Unsupported Filter ID in lzma_raw_coder_memusage()
327 if (usage == UINT64_MAX) in lzma_raw_coder_memusage()
328 return UINT64_MAX; // Invalid options in lzma_raw_coder_memusage()
Doutqueue.c19 #define BUF_SIZE_MAX (UINT64_MAX / LZMA_THREADS_MAX / 2 / 2)
49 return UINT64_MAX; in lzma_outq_memusage()
72 #if SIZE_MAX < UINT64_MAX in lzma_outq_init()
/netbsd/src/external/public-domain/xz/dist/src/xz/
Dcoder.c224 uint64_t memory_usage = UINT64_MAX; in coder_set_compression_settings()
234 if (memory_usage != UINT64_MAX) in coder_set_compression_settings()
250 if (memory_usage == UINT64_MAX) in coder_set_compression_settings()
262 if (decmem != UINT64_MAX) in coder_set_compression_settings()
295 if (memory_usage == UINT64_MAX) in coder_set_compression_settings()
340 if (memory_usage == UINT64_MAX) in coder_set_compression_settings()
420 if (uncompressed_size != UINT64_MAX in is_format_lzma()
636 uint64_t block_remaining = UINT64_MAX; in coder_normal()
692 } else if (block_remaining != UINT64_MAX) { in coder_normal()
Dutil.c76 if (result > UINT64_MAX / 10) in str_to_uint64()
83 if (UINT64_MAX - add < result) in str_to_uint64()
120 if (result > UINT64_MAX / multiplier) in str_to_uint64()
Dhardware.c95 return memlimit != 0 ? memlimit : UINT64_MAX; in hardware_memlimit_get()
106 if (value == 0 || value == UINT64_MAX) in memlimit_show()
Dargs.c49 value = str_to_uint64(name, str, 0, UINT64_MAX); in parse_memlimit()
97 0, UINT64_MAX); in parse_block_list()
106 opt_block_list[i] = UINT64_MAX; in parse_block_list()
497 optarg, 0, UINT64_MAX); in parse_real()
/netbsd/src/external/public-domain/xz/dist/src/liblzma/api/
Dlzma.h83 || !defined(UINT32_MAX) || !defined(UINT64_MAX)
161 # ifndef UINT64_MAX
162 # define UINT64_MAX (UINT64_C(18446744073709551615)) macro
/netbsd/src/external/bsd/libarchive/dist/libarchive/
Darchive_platform.h99 # undef UINT64_MAX
133 #define UINT64_MAX (~(uint64_t)0) macro
136 #define INT64_MAX ((int64_t)(UINT64_MAX >> 1))
Darchive_read_support_format_ar.c595 limit = UINT64_MAX / base; in ar_atol8()
596 last_digit_limit = UINT64_MAX % base; in ar_atol8()
605 l = UINT64_MAX; /* Truncate on overflow. */ in ar_atol8()
621 limit = UINT64_MAX / base; in ar_atol10()
622 last_digit_limit = UINT64_MAX % base; in ar_atol10()
630 l = UINT64_MAX; /* Truncate on overflow. */ in ar_atol10()
/netbsd/src/usr.bin/vndcompress/
Dvnduncompress.c160 __CTASSERT(OFF_MAX <= UINT64_MAX); in vnduncompress()
183 assert(offset <= MIN(OFF_MAX, UINT64_MAX)); in vnduncompress()
184 if ((MIN(OFF_MAX, UINT64_MAX) - offset) < (end - start)) in vnduncompress()
225 assert((size_t)n_read <= (MIN(OFF_MAX, UINT64_MAX) - offset)); in vnduncompress()
/netbsd/src/external/public-domain/xz/dist/src/liblzma/api/lzma/
Dvli.h34 #define LZMA_VLI_MAX (UINT64_MAX / 2)
39 #define LZMA_VLI_UNKNOWN UINT64_MAX
/netbsd/src/sys/arch/sparc/include/
Dint_limits.h69 #define UINT64_MAX 0xffffffffffffffffUL /* uint64_t */ macro
71 #define UINT64_MAX 0xffffffffffffffffULL /* uint64_t */ macro
/netbsd/src/sys/arch/powerpc/include/
Dint_limits.h69 #define UINT64_MAX 0xffffffffffffffffUL /* uint64_t */ macro
71 #define UINT64_MAX 0xffffffffffffffffULL /* uint64_t */ macro
/netbsd/src/sys/arch/mips/include/
Dint_limits.h69 #define UINT64_MAX 0xffffffffffffffffUL /* uint64_t */ macro
71 #define UINT64_MAX 0xffffffffffffffffULL /* uint64_t */ macro
/netbsd/src/external/cddl/osnet/dist/lib/libuutil/common/
Duu_strtoint.c103 multmax = (uint64_t)UINT64_MAX / (uint64_t)base; in strtoint()
120 if ((uint64_t)UINT64_MAX - val < (uint64_t)i) in strtoint()
257 if (max > UINT64_MAX) in uu_strtouint()
/netbsd/src/external/public-domain/xz/dist/src/liblzma/delta/
Ddelta_common.c46 if (lzma_delta_coder_memusage(filters[0].options) == UINT64_MAX) in lzma_delta_coder_init()
70 return UINT64_MAX; in lzma_delta_coder_memusage()
/netbsd/src/external/cddl/osnet/dist/common/zfs/
Dzfs_comutil.c78 zrpp->zrp_maxdata = UINT64_MAX; in zpool_get_rewind_policy()
79 zrpp->zrp_txg = UINT64_MAX; in zpool_get_rewind_policy()
Dzfs_prop.c422 UINT64_MAX, PROP_DEFAULT, ZFS_TYPE_FILESYSTEM, in zfs_prop_init()
425 UINT64_MAX, PROP_DEFAULT, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, in zfs_prop_init()
428 UINT64_MAX, PROP_DEFAULT, ZFS_TYPE_FILESYSTEM, in zfs_prop_init()
431 UINT64_MAX, PROP_DEFAULT, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, in zfs_prop_init()
/netbsd/src/crypto/external/bsd/openssl/dist/test/
Dconstant_time_test.c57 0, 1, 1024, 12345, 32000, 32000000, 32000000001, UINT64_MAX / 2,
58 UINT64_MAX / 2 + 1, UINT64_MAX - 1, UINT64_MAX
/netbsd/src/sys/net/npf/
Dnpf_ctl.c162 tid = dnvlist_get_number(req, "id", UINT64_MAX); in npf_mk_table()
163 type = dnvlist_get_number(req, "type", UINT64_MAX); in npf_mk_table()
360 type = dnvlist_get_number(req, "code-type", UINT64_MAX); in npf_mk_singlerule()
742 uint64_t id = dnvlist_get_number(req, "id", UINT64_MAX); in npfctl_rule()
853 ver = dnvlist_get_number(req, "version", UINT64_MAX); in npfctl_run_op()
854 if (__predict_false(ver != UINT64_MAX && ver != NPF_VERSION)) { in npfctl_run_op()

123456