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

1234

/netbsd-6-1-5-RELEASE/external/bsd/llvm/config/llvm/Support/
H A DDataTypes.h98 #if !defined(UINT64_MAX)
99 # define UINT64_MAX 0xffffffffffffffffULL macro
/netbsd-6-1-5-RELEASE/external/public-domain/xz/dist/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
/netbsd-6-1-5-RELEASE/external/public-domain/xz/dist/src/common/
H A Dsysdefs.h102 #ifndef UINT64_MAX
103 # define UINT64_MAX UINT64_C(18446744073709551615) macro
117 # define SIZE_MAX UINT64_MAX
122 #if SIZE_MAX != UINT32_MAX && SIZE_MAX != UINT64_MAX
/netbsd-6-1-5-RELEASE/external/bsd/libarchive/dist/libarchive/
H A Darchive_platform.h90 # undef UINT64_MAX macro
118 #define UINT64_MAX (~(uint64_t)0) macro
121 #define INT64_MAX ((int64_t)(UINT64_MAX >> 1))
/netbsd-6-1-5-RELEASE/external/public-domain/xz/dist/src/liblzma/api/
H A Dlzma.h47 * UINT32_MAX, UINT64_MAX
83 || !defined(UINT32_MAX) || !defined(UINT64_MAX)
153 # ifndef UINT64_MAX
154 # define UINT64_MAX (UINT64_C(18446744073709551615)) macro
/netbsd-6-1-5-RELEASE/external/gpl2/xcvs/dist/lib/
H A 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-6-1-5-RELEASE/external/public-domain/xz/dist/src/liblzma/delta/
H A Ddelta_common.c42 if (lzma_delta_coder_memusage(filters[0].options) == UINT64_MAX)
67 return UINT64_MAX;
/netbsd-6-1-5-RELEASE/external/public-domain/xz/dist/src/xz/
H A Dhardware.c88 return memlimit != 0 ? memlimit : UINT64_MAX;
97 // is 0 or UINT64_MAX. This might get a bit more complex once there
99 if (value == 0 || value == UINT64_MAX)
H A Dutil.c66 if (result > UINT64_MAX / 10)
73 if (UINT64_MAX - add < result)
110 if (result > UINT64_MAX / multiplier)
/netbsd-6-1-5-RELEASE/tests/lib/libc/gen/
H A Dt_randomid.c59 lowest = UINT64_MAX;
68 if (lowest != UINT64_MAX)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/fixincludes/tests/base/
H A Dstdint-irix65.h16 #define UINT64_MAX 0xffffffffffffffffULL macro
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/
H A Dc99-stdint-3.c24 #if defined(INT64_MAX) && defined(UINT64_MAX)
H A Dc99-stdint-7.c43 #if defined(UINT64_MAX) != defined(__UINT64_TYPE__)
44 #error "Unexpected UINT64_MAX definedness"
89 #if defined(UINT64_MAX) && UINT64_MAX != __UINT64_MAX__
90 #error "UINT64_MAX not usable in #if or wrong value"
/netbsd-6-1-5-RELEASE/external/cddl/osnet/dist/common/zfs/
H A Dzfs_comutil.c78 zrpp->zrp_maxdata = UINT64_MAX;
79 zrpp->zrp_txg = UINT64_MAX;
/netbsd-6-1-5-RELEASE/sys/arch/powerpc/include/
H A Dint_limits.h66 #define UINT64_MAX 0xffffffffffffffffUL /* uint64_t */ macro
68 #define UINT64_MAX 0xffffffffffffffffULL /* uint64_t */ macro
/netbsd-6-1-5-RELEASE/sys/arch/sparc/include/
H A Dint_limits.h66 #define UINT64_MAX 0xffffffffffffffffUL /* uint64_t */ macro
68 #define UINT64_MAX 0xffffffffffffffffULL /* uint64_t */ macro
/netbsd-6-1-5-RELEASE/sys/arch/mips/include/
H A Dint_limits.h66 #define UINT64_MAX 0xffffffffffffffffUL /* uint64_t */ macro
68 #define UINT64_MAX 0xffffffffffffffffULL /* uint64_t */ macro
/netbsd-6-1-5-RELEASE/common/lib/libc/gen/
H A Drpst.c98 return UINT64_MAX;
612 uint64_t min_y = UINT64_MAX;
614 uint64_t min_x = UINT64_MAX;
623 assert(NULL == rpst_iterate_first(&t, UINT64_MAX, 0, UINT64_MAX, &it));
677 assert(min_y == 0 || 0 == query(min_y - 1, 0, UINT64_MAX));
678 assert(max_x == UINT64_MAX ||
679 0 == query(UINT64_MAX, max_x + 1, UINT64_MAX));
680 assert(min_x == 0 || 0 == query(UINT64_MAX,
[all...]
/netbsd-6-1-5-RELEASE/external/cddl/osnet/dist/lib/libuutil/common/
H A Duu_strtoint.c103 multmax = (uint64_t)UINT64_MAX / (uint64_t)base;
120 if ((uint64_t)UINT64_MAX - val < (uint64_t)i)
257 if (max > UINT64_MAX)
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/gnulib/
H A Dstdint.in.h322 #undef UINT64_MAX macro
324 # define UINT64_MAX UINTMAX_C (18446744073709551615) macro
363 # define UINT_LEAST64_MAX UINT64_MAX
402 # define UINT_FAST64_MAX UINT64_MAX
427 #ifdef UINT64_MAX
428 # define UINTMAX_MAX UINT64_MAX
/netbsd-6-1-5-RELEASE/sys/arch/vax/include/
H A Dint_limits.h57 #define UINT64_MAX 0xffffffffffffffffULL /* uint64_t */ macro
/netbsd-6-1-5-RELEASE/sys/arch/sh3/include/
H A Dint_limits.h57 #define UINT64_MAX 0xffffffffffffffffULL /* uint64_t */ macro
/netbsd-6-1-5-RELEASE/sys/arch/hppa/include/
H A Dint_limits.h57 #define UINT64_MAX 0xffffffffffffffffULL /* uint64_t */ macro
/netbsd-6-1-5-RELEASE/sys/arch/i386/include/
H A Dint_limits.h57 #define UINT64_MAX 0xffffffffffffffffULL /* uint64_t */ macro
/netbsd-6-1-5-RELEASE/sys/arch/ia64/include/
H A Dint_limits.h57 #define UINT64_MAX 0xffffffffffffffffUL /* uint64_t */ macro

Completed in 285 milliseconds

1234