Searched refs:UINT64_MAX (Results 1 - 25 of 219) sorted by relevance

123456789

/freebsd-11-stable/sys/contrib/ck/include/
H A Dck_limits.h39 #ifndef UINT64_MAX
40 #define UINT64_MAX ULLONG_MAX macro
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/
H A DFileCache.cpp31 return UINT64_MAX;
36 return UINT64_MAX;
44 if (fd == UINT64_MAX) {
66 if (fd == UINT64_MAX) {
68 return UINT64_MAX;
78 return UINT64_MAX;
82 return UINT64_MAX;
86 return UINT64_MAX;
92 if (fd == UINT64_MAX) {
94 return UINT64_MAX;
[all...]
/freebsd-11-stable/sys/arm64/include/
H A D_stdint.h75 #define UINT64_MAX 0xffffffffffffffffUL macro
97 #define UINT_LEAST64_MAX UINT64_MAX
119 #define UINT_FAST64_MAX UINT64_MAX
127 #define UINTPTR_MAX UINT64_MAX
135 #define UINTMAX_MAX UINT64_MAX
150 #define SIZE_MAX UINT64_MAX
/freebsd-11-stable/sys/riscv/include/
H A D_stdint.h75 #define UINT64_MAX 0xffffffffffffffffUL macro
97 #define UINT_LEAST64_MAX UINT64_MAX
119 #define UINT_FAST64_MAX UINT64_MAX
127 #define UINTPTR_MAX UINT64_MAX
135 #define UINTMAX_MAX UINT64_MAX
150 #define SIZE_MAX UINT64_MAX
/freebsd-11-stable/sys/sparc64/include/
H A D_stdint.h75 #define UINT64_MAX 0xffffffffffffffffUL macro
97 #define UINT_LEAST64_MAX UINT64_MAX
119 #define UINT_FAST64_MAX UINT64_MAX
127 #define UINTPTR_MAX UINT64_MAX
135 #define UINTMAX_MAX UINT64_MAX
150 #define SIZE_MAX UINT64_MAX
/freebsd-11-stable/sys/dev/bhnd/
H A Dbhnd_types.h99 #define BHND_ADDR_MAX UINT64_MAX /**< Maximum bhnd_addr_t value */
103 #define BHND_SIZE_MAX UINT64_MAX /**< Maximum bhnd_size_t value */
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/
H A DDataTypes.h82 #if !defined(UINT64_MAX)
83 # define UINT64_MAX 0xffffffffffffffffULL macro
/freebsd-11-stable/usr.bin/mkuzip/
H A Dmkuz_blk.h29 #define OFFSET_UNDEF UINT64_MAX
/freebsd-11-stable/sys/x86/include/
H A D_stdint.h89 #define UINT64_MAX 0xffffffffffffffff macro
93 #define UINT64_MAX 0xffffffffffffffffULL macro
116 #define UINT_LEAST64_MAX UINT64_MAX
138 #define UINT_FAST64_MAX UINT64_MAX
147 #define UINTPTR_MAX UINT64_MAX
160 #define UINTMAX_MAX UINT64_MAX
176 #define SIZE_MAX UINT64_MAX
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-defines.h34 #if !defined(UINT64_MAX)
35 #define UINT64_MAX 18446744073709551615ULL macro
85 #define LLDB_INVALID_ADDRESS UINT64_MAX
91 #define LLDB_INVALID_UID UINT64_MAX
96 #define LLDB_INVALID_OFFSET UINT64_MAX // Must match max of lldb::offset_t
/freebsd-11-stable/sys/powerpc/include/
H A D_stdint.h98 #define UINT64_MAX __UINT64_C(0xffffffffffffffff) macro
120 #define UINT_LEAST64_MAX UINT64_MAX
142 #define UINT_FAST64_MAX UINT64_MAX
151 #define UINTPTR_MAX UINT64_MAX
164 #define UINTMAX_MAX UINT64_MAX
180 #define SIZE_MAX UINT64_MAX
/freebsd-11-stable/sys/mips/include/
H A D_stdint.h99 #define UINT64_MAX __UINT64_C(0xffffffffffffffff) macro
121 #define UINT_LEAST64_MAX UINT64_MAX
143 #define UINT_FAST64_MAX UINT64_MAX
152 #define UINTPTR_MAX UINT64_MAX
165 #define UINTMAX_MAX UINT64_MAX
177 #define SIZE_MAX UINT64_MAX
/freebsd-11-stable/sys/sys/
H A Dstdint.h59 #if defined(UINTPTR_MAX) && defined(UINT64_MAX) && (UINTPTR_MAX == UINT64_MAX)
/freebsd-11-stable/contrib/xz/src/liblzma/api/lzma/
H A Dvli.h13 * thus the vli argument must be less than or equal to UINT64_MAX / 2. You
34 #define LZMA_VLI_MAX (UINT64_MAX / 2)
39 #define LZMA_VLI_UNKNOWN UINT64_MAX
/freebsd-11-stable/sys/arm/include/
H A D_stdint.h75 #define UINT64_MAX 0xffffffffffffffffULL macro
97 #define UINT_LEAST64_MAX UINT64_MAX
119 #define UINT_FAST64_MAX UINT64_MAX
135 #define UINTMAX_MAX UINT64_MAX
/freebsd-11-stable/sys/compat/cloudabi/
H A Dcloudabi_clock.c75 if (s > UINT64_MAX / 1000000000 ||
76 (s == UINT64_MAX / 1000000000 && ns > UINT64_MAX % 1000000000)) {
78 *out = UINT64_MAX;
/freebsd-11-stable/contrib/xz/src/common/
H A Dsysdefs.h100 #ifndef UINT64_MAX
101 # define UINT64_MAX UINT64_C(18446744073709551615) macro
118 # define SIZE_MAX UINT64_MAX
123 #if SIZE_MAX != UINT32_MAX && SIZE_MAX != UINT64_MAX
/freebsd-11-stable/contrib/xz/src/xz/
H A Dhardware.c96 // UINT64_MAX is a special case for the string "max" so
98 if (memlimit_compress != UINT64_MAX
125 return memlimit != 0 ? memlimit : UINT64_MAX;
134 // is 0 or UINT64_MAX. This might get a bit more complex once there
136 if (value == 0 || value == UINT64_MAX)
/freebsd-11-stable/lib/libc/tests/stdio/
H A Dprintbasic_test.c52 #define S_SIZEMAX (SIZE_MAX == UINT64_MAX ? S_UINT64MAX : S_UINT32MAX)
53 #define S_ULONGMAX (ULONG_MAX == UINT64_MAX ? S_UINT64MAX : S_UINT32MAX)
54 #define S_ULLONGMAX (ULLONG_MAX == UINT64_MAX ? S_UINT64MAX : S_UINT32MAX)
105 ATF_REQUIRE(UINTMAX_MAX == UINT64_MAX);
112 testfmt(S_UINT64MAX, "%ju", UINT64_MAX);
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_platform.h106 # undef UINT64_MAX macro
140 #define UINT64_MAX (~(uint64_t)0) macro
143 #define INT64_MAX ((int64_t)(UINT64_MAX >> 1))
/freebsd-11-stable/contrib/xz/src/liblzma/api/
H A Dlzma.h47 * UINT32_MAX, UINT64_MAX
83 || !defined(UINT32_MAX) || !defined(UINT64_MAX)
161 # ifndef UINT64_MAX
162 # define UINT64_MAX (UINT64_C(18446744073709551615)) macro
/freebsd-11-stable/sys/contrib/ncsw/inc/
H A Dtypes_ext.h101 WRITE_UINT64(*((uint64_t*)((size_t)(UINT64_MAX))),
102 GET_UINT64(*((uint64_t*)((size_t)(UINT64_MAX)))));
/freebsd-11-stable/contrib/xz/src/liblzma/delta/
H A Ddelta_common.c46 if (lzma_delta_coder_memusage(filters[0].options) == UINT64_MAX)
70 return UINT64_MAX;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionGroupFormat.h31 UINT64_MAX, // Pass UINT64_MAX to disable the "--size" option
33 UINT64_MAX); // Pass UINT64_MAX to disable the "--count" option
/freebsd-11-stable/lib/libutil/
H A Dexpand_number.c50 if (umaxval > UINT64_MAX)

Completed in 421 milliseconds

123456789