Searched refs:UINT32_MAX (Results 1 - 25 of 159) sorted by relevance

1234567

/macosx-10.10.1/llvmCore-3425.0.34/unittests/Support/
H A DBlockFrequencyTest.cpp14 BranchProbability Prob(UINT32_MAX - 1, UINT32_MAX);
21 BranchProbability Prob(UINT32_MAX, UINT32_MAX);
35 BranchProbability Prob(UINT32_MAX / 2, UINT32_MAX);
51 BranchProbability Prob(UINT32_MAX, UINT32_MAX);
75 BranchProbability BigZero(0, UINT32_MAX);
76 BranchProbability BigOne(UINT32_MAX, UINT32_MA
[all...]
/macosx-10.10.1/gnutar-453/gnutar/lib/
H A Dinttypes_.h150 # ifdef UINT32_MAX
156 # ifdef UINT32_MAX
162 # ifdef UINT32_MAX
168 # ifdef UINT32_MAX
334 # if UINT_FAST8_MAX > UINT32_MAX
342 # if UINT_FAST8_MAX > UINT32_MAX
350 # if UINT_FAST8_MAX > UINT32_MAX
358 # if UINT_FAST8_MAX > UINT32_MAX
382 # if UINT_FAST16_MAX > UINT32_MAX
390 # if UINT_FAST16_MAX > UINT32_MAX
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/lib/CodeGen/
H A DMachineBranchProbabilityInfo.cpp36 assert(MBB->succ_size() < UINT32_MAX);
46 if (Sum <= UINT32_MAX)
51 assert((Sum / UINT32_MAX) < UINT32_MAX);
52 Scale = (Sum / UINT32_MAX) + 1;
59 assert(Sum <= UINT32_MAX);
/macosx-10.10.1/xnu-2782.1.97/EXTERNAL_HEADERS/
H A Dstdint.h91 #define UINT32_MAX 4294967295U macro
107 #define UINT_LEAST32_MAX UINT32_MAX
123 #define UINT_FAST32_MAX UINT32_MAX
139 #define UINTPTR_MAX UINT32_MAX
164 #define SIZE_MAX UINT32_MAX
/macosx-10.10.1/xnu-2782.1.97/iokit/Kernel/
H A DIOSharedDataQueue.cpp88 if (size > UINT32_MAX - DATA_QUEUE_MEMORY_HEADER_SIZE - DATA_QUEUE_MEMORY_APPENDIX_SIZE) {
167 if ((headOffset > UINT32_MAX - DATA_QUEUE_ENTRY_HEADER_SIZE) ||
169 (headOffset + DATA_QUEUE_ENTRY_HEADER_SIZE > UINT32_MAX - headSize) ||
172 // Note: wrapping even with the UINT32_MAX checks, as we have to support
173 // queueSize of UINT32_MAX
191 if (dataSize > UINT32_MAX - DATA_QUEUE_ENTRY_HEADER_SIZE) {
202 if ((entrySize <= UINT32_MAX - tail) &&
293 if ((headOffset > UINT32_MAX - DATA_QUEUE_ENTRY_HEADER_SIZE) ||
296 (headOffset + DATA_QUEUE_ENTRY_HEADER_SIZE > UINT32_MAX - headSize) ||
298 // Note: we have to wrap to the beginning even with the UINT32_MAX check
[all...]
H A DIODataQueue.cpp88 if (size > UINT32_MAX - DATA_QUEUE_MEMORY_HEADER_SIZE) {
121 if ((entrySize > UINT32_MAX - DATA_QUEUE_ENTRY_HEADER_SIZE) ||
123 (numEntries > UINT32_MAX-1) ||
125 (entrySize + DATA_QUEUE_ENTRY_HEADER_SIZE > UINT32_MAX/(numEntries+1))) {
157 if (dataSize > UINT32_MAX - DATA_QUEUE_ENTRY_HEADER_SIZE) {
168 if ((entrySize <= UINT32_MAX - tail) &&
/macosx-10.10.1/xnu-2782.1.97/osfmk/atm/
H A Datm_types.h62 #define ATM_SUBAID32_MAX (UINT32_MAX)
/macosx-10.10.1/Libc-1044.1.2/include/
H A Dstdint.h86 #define UINT32_MAX 4294967295U macro
102 #define UINT_LEAST32_MAX UINT32_MAX
118 #define UINT_FAST32_MAX UINT32_MAX
134 #define UINTPTR_MAX UINT32_MAX
155 #define SIZE_MAX UINT32_MAX
/macosx-10.10.1/SmartcardCCID-55008/libusb/libusb/msvc/
H A Dstdint.h139 #define UINT32_MAX 0xffffffffU /* 4294967295U */ macro
155 #define UINT_LEAST32_MAX UINT32_MAX
171 #define UINT_FAST32_MAX UINT32_MAX
183 #define UINTPTR_MAX UINT32_MAX
207 #define SIZE_MAX UINT32_MAX
/macosx-10.10.1/llvmCore-3425.0.34/lib/Support/
H A DBlockFrequency.cpp25 uint64_t u0 = freq & UINT32_MAX;
74 uint64_t mulLo = (Frequency & UINT32_MAX) * n;
79 if (mulHi > UINT32_MAX || mulRes < mulLo) {
/macosx-10.10.1/xnu-2782.1.97/osfmk/mach/
H A Dvm_types.h69 #define PPNUM_MAX UINT32_MAX
/macosx-10.10.1/ICU-531.30/icuSources/common/unicode/
H A Dumachine.h157 #ifndef UINT32_MAX
159 # define UINT32_MAX ((uint32_t)(4294967295U)) macro
/macosx-10.10.1/JavaScriptCore-7600.1.17/icu/unicode/
H A Dumachine.h176 #ifndef UINT32_MAX
178 # define UINT32_MAX ((uint32_t)(4294967295U)) macro
/macosx-10.10.1/WTF-7600.1.24/icu/unicode/
H A Dumachine.h176 #ifndef UINT32_MAX
178 # define UINT32_MAX ((uint32_t)(4294967295U)) macro
/macosx-10.10.1/WebKit-7600.1.25/mac/icu/unicode/
H A Dumachine.h176 #ifndef UINT32_MAX
178 # define UINT32_MAX ((uint32_t)(4294967295U)) macro
/macosx-10.10.1/llvmCore-3425.0.34/lib/DebugInfo/
H A DDWARFDebugAbbrev.cpp28 IdxOffset = UINT32_MAX;// Out of order indexes, we can't do O(1) lookups
43 if (IdxOffset == UINT32_MAX) {
/macosx-10.10.1/libarchive-30/libarchive/libarchive/
H A Darchive_platform.h115 #define UINT32_MAX (~(uint32_t)0) macro
/macosx-10.10.1/xnu-2782.1.97/osfmk/vm/
H A Dvm_purgeable_internal.h51 #define TOKEN_COUNT_MAX UINT32_MAX
/macosx-10.10.1/libiconv-42/libiconv/srclib/
H A Dstdint_.h358 # ifndef UINT32_MAX
360 # define UINT32_MAX (((1 << (@BITSIZEOF_UINT32_T@ - 1)) - 1) * 2 + 1) macro
362 # define UINT32_MAX (((1U << (@BITSIZEOF_UINT32_T@ - 1)) - 1) * 2 + 1) macro
366 # define UINT32_MAX 4294967295U macro
508 # define UINT_LEAST32_MAX UINT32_MAX
597 # define UINT_FAST8_MAX UINT32_MAX
635 # define UINT_FAST16_MAX UINT32_MAX
673 # define UINT_FAST32_MAX UINT32_MAX
803 # define UINTMAX_MAX UINT32_MAX
/macosx-10.10.1/BerkeleyDB-21/db/build_brew/
H A Dclib_port.h8 #ifndef UINT32_MAX /* Maximum 32-bit unsigned. */
9 #define UINT32_MAX 4294967295U macro
/macosx-10.10.1/BerkeleyDB-21/db/build_s60/
H A Dclib_port.h8 #ifndef UINT32_MAX /* Maximum 32-bit unsigned. */
9 #define UINT32_MAX 4294967295U macro
/macosx-10.10.1/BerkeleyDB-21/db/build_vxworks/
H A Dclib_port.h8 #ifndef UINT32_MAX /* Maximum 32-bit unsigned. */
9 #define UINT32_MAX 4294967295U macro
/macosx-10.10.1/BerkeleyDB-21/db/build_wince/
H A Dclib_port.h8 #ifndef UINT32_MAX /* Maximum 32-bit unsigned. */
9 #define UINT32_MAX 4294967295U macro
/macosx-10.10.1/BerkeleyDB-21/db/build_windows/
H A Dclib_port.h8 #ifndef UINT32_MAX /* Maximum 32-bit unsigned. */
9 #define UINT32_MAX 4294967295U macro
/macosx-10.10.1/Security-57031.1.35/Security/sec/Security/
H A Dpbkdf2.c87 completeBlocks=completeBlocks & UINT32_MAX;

Completed in 364 milliseconds

1234567