Searched refs:UINT_MAX (Results 1 - 25 of 174) sorted by relevance

1234567

/external/libvpx/libvpx/vp8/common/
H A Dsad_c.c85 sad_array[0] = vp8_sad16x16_c(src_ptr, src_stride, ref_ptr + 0, ref_stride, UINT_MAX);
86 sad_array[1] = vp8_sad16x16_c(src_ptr, src_stride, ref_ptr + 1, ref_stride, UINT_MAX);
87 sad_array[2] = vp8_sad16x16_c(src_ptr, src_stride, ref_ptr + 2, ref_stride, UINT_MAX);
94 sad_array[0] = (unsigned short)vp8_sad16x16_c(src_ptr, src_stride, ref_ptr + 0, ref_stride, UINT_MAX);
95 sad_array[1] = (unsigned short)vp8_sad16x16_c(src_ptr, src_stride, ref_ptr + 1, ref_stride, UINT_MAX);
96 sad_array[2] = (unsigned short)vp8_sad16x16_c(src_ptr, src_stride, ref_ptr + 2, ref_stride, UINT_MAX);
97 sad_array[3] = (unsigned short)vp8_sad16x16_c(src_ptr, src_stride, ref_ptr + 3, ref_stride, UINT_MAX);
98 sad_array[4] = (unsigned short)vp8_sad16x16_c(src_ptr, src_stride, ref_ptr + 4, ref_stride, UINT_MAX);
99 sad_array[5] = (unsigned short)vp8_sad16x16_c(src_ptr, src_stride, ref_ptr + 5, ref_stride, UINT_MAX);
100 sad_array[6] = (unsigned short)vp8_sad16x16_c(src_ptr, src_stride, ref_ptr + 6, ref_stride, UINT_MAX);
[all...]
/external/clang/test/Analysis/
H A Dadditive-folding.cpp5 #define UINT_MAX (~0U) macro
6 #define INT_MAX (UINT_MAX & (UINT_MAX >> 1))
44 if (a == UINT_MAX) {
46 clang_analyzer_eval(a-1 == UINT_MAX-1); // expected-warning{{TRUE}}
49 clang_analyzer_eval(a-1 != UINT_MAX-1); // expected-warning{{TRUE}}
75 if (a >= UINT_MAX)
76 clang_analyzer_eval(a == UINT_MAX); // expected-warning{{TRUE}}
78 clang_analyzer_eval(a != UINT_MAX); // expected-warning{{TRUE}}
82 if (a < UINT_MAX)
[all...]
H A Dadditive-folding-range-constraints.c5 #define UINT_MAX (~0U) macro
6 #define INT_MAX (UINT_MAX & (UINT_MAX >> 1))
15 clang_analyzer_eval(a < UINT_MAX-1); // expected-warning{{TRUE}}
17 clang_analyzer_eval(a == UINT_MAX-1 || a == UINT_MAX); // expected-warning{{TRUE}}
22 clang_analyzer_eval(a < UINT_MAX-1 || a == UINT_MAX); // expected-warning{{TRUE}}
24 clang_analyzer_eval(a == UINT_MAX-1); // expected-warning{{TRUE}}
29 clang_analyzer_eval(a == 0 || a == UINT_MAX); // expecte
[all...]
/external/e2fsprogs/intl/
H A Dgmo.h46 /* If UINT_MAX isn't defined, assume it's a 32-bit type.
51 #ifndef UINT_MAX
52 # define UINT_MAX UINT_MAX_32_BITS macro
55 #if UINT_MAX == UINT_MAX_32_BITS
/external/libcxx/test/std/depr/depr.c.headers/
H A Dlimits_h.pass.cpp62 #ifndef UINT_MAX
63 #error UINT_MAX not defined
/external/libcxx/test/std/language.support/support.limits/c.limits/
H A Dclimits.pass.cpp62 #ifndef UINT_MAX
63 #error UINT_MAX not defined
/external/clang/test/Headers/
H A Dlimits.cpp15 _Static_assert(INT_MAX == UINT_MAX/2, "");
25 _Static_assert(UINT_MAX == (unsigned int)~0ULL, "");
/external/libvncserver/common/
H A Dmd5.h52 /* If UINT_MAX isn't defined, assume it's a 32-bit type.
57 # ifndef UINT_MAX
58 # define UINT_MAX UINT_MAX_32_BITS macro
61 # if UINT_MAX == UINT_MAX_32_BITS
H A Dlzoconf.h65 #if !defined(UCHAR_MAX) || !defined(UINT_MAX) || !defined(ULONG_MAX)
68 #if (USHRT_MAX < 1) || (UINT_MAX < 1) || (ULONG_MAX < 1)
88 # if (UINT_MAX < LZO_0xffffffffL)
129 # define LZO_UINT_MAX UINT_MAX
145 # if (UINT_MAX >= LZO_0xffffffffL)
148 # define LZO_UINT32_MAX UINT_MAX
171 # if (LZO_UINT_MAX <= UINT_MAX)
H A Dlzodefs.h105 #if (UINT_MAX == LZO_0xffffL)
124 #if defined(_MSC_VER) && defined(M_I86HM) && (UINT_MAX == LZO_0xffffL)
128 #if (UINT_MAX == LZO_0xffffL)
197 #if (UINT_MAX == LZO_0xffffL)
305 # if (UINT_MAX == LZO_0xffffL)
308 # elif (UINT_MAX == LZO_0xffffffffL)
324 # if (UINT_MAX == LZO_0xffffL)
327 # elif (UINT_MAX == LZO_0xffffffffL)
334 # if (UINT_MAX == LZO_0xffffL)
337 # elif (UINT_MAX
[all...]
/external/valgrind/none/tests/s390x/
H A Dlpr.c81 t32(INT_MAX); t32(INT_MIN); t32(UINT_MAX);
85 t64(INT_MAX); t64(INT_MIN); t64(UINT_MAX);
90 t3264(INT_MAX); t3264(INT_MIN); t3264(UINT_MAX);
/external/linux-tools-perf/src/tools/perf/tests/
H A Dkeep-tracking.c55 .mmap_pages = UINT_MAX,
56 .user_freq = UINT_MAX,
70 threads = thread_map__new(-1, getpid(), UINT_MAX);
98 CHECK__(perf_evlist__mmap(evlist, UINT_MAX, false));
H A Dopen-syscall.c11 struct thread_map *threads = thread_map__new(-1, getpid(), UINT_MAX);
H A Dperf-time-to-tsc.c50 .mmap_pages = UINT_MAX,
51 .user_freq = UINT_MAX,
71 threads = thread_map__new(-1, getpid(), UINT_MAX);
94 CHECK__(perf_evlist__mmap(evlist, UINT_MAX, false));
H A Dopen-syscall-tp-fields.c11 .uid = UINT_MAX,
54 err = perf_evlist__mmap(evlist, UINT_MAX, false);
/external/clang/lib/Headers/
H A Dlimits.h50 #undef UINT_MAX macro
72 #define UINT_MAX (__INT_MAX__ *2U +1U) macro
/external/libcxx/test/std/language.support/support.limits/limits/numeric.limits.members/
H A Dmax.pass.cpp43 test<char32_t>(UINT_MAX);
48 test<unsigned int>(UINT_MAX);
/external/valgrind/coregrind/m_debuginfo/
H A Dlzoconf.h66 #if !defined(UCHAR_MAX) || !defined(UINT_MAX) || !defined(ULONG_MAX)
69 #if (USHRT_MAX < 1) || (UINT_MAX < 1) || (ULONG_MAX < 1)
89 # if (UINT_MAX < LZO_0xffffffffL)
130 # define LZO_UINT_MAX UINT_MAX
146 # if (UINT_MAX >= LZO_0xffffffffL)
149 # define LZO_UINT32_MAX UINT_MAX
193 # if (LZO_UINT_MAX <= UINT_MAX)
H A Dlzodefs.h106 #if (UINT_MAX == LZO_0xffffL)
125 #if defined(_MSC_VER) && defined(M_I86HM) && (UINT_MAX == LZO_0xffffL)
129 #if (UINT_MAX == LZO_0xffffL)
198 #if (UINT_MAX == LZO_0xffffL)
306 # if (UINT_MAX == LZO_0xffffL)
309 # elif (UINT_MAX == LZO_0xffffffffL)
325 # if (UINT_MAX == LZO_0xffffL)
328 # elif (UINT_MAX == LZO_0xffffffffL)
335 # if (UINT_MAX == LZO_0xffffL)
338 # elif (UINT_MAX
[all...]
/external/libcxx/test/std/utilities/meta/meta.trans/meta.trans.other/
H A Dunderlying_type.pass.cpp18 enum F { W = UINT_MAX };
/external/liblzf/
H A DlzfP.h172 # elif UINT_MAX == 65535
/external/llvm/lib/Target/R600/
H A DAMDGPUTargetTransformInfo.cpp34 UP.MaxCount = UINT_MAX;
/external/boringssl/src/crypto/
H A Dconstant_time_test.c226 static unsigned int test_values[] = {0, 1, 1024, 12345, 32000, UINT_MAX / 2 - 1,
227 UINT_MAX / 2, UINT_MAX / 2 + 1,
228 UINT_MAX - 1, UINT_MAX};
/external/vboot_reference/firmware/lib/
H A Dvboot_audio.c19 #ifndef UINT_MAX
20 #define UINT_MAX 4294967295U /* 0xffffffff */ macro
112 if ((sizeof(VbDevMusicNote) > UINT_MAX / hdr->count) ||
114 UINT_MAX - hdr->count * sizeof(VbDevMusicNote))) {
167 if (hdr->count > (UINT_MAX / sizeof(VbDevMusicNote) - 1)) {
/external/freetype/include/config/
H A Dftstdlib.h45 /* UINT_MAX and ULONG_MAX are used to automatically compute the size */
66 #define FT_UINT_MAX UINT_MAX

Completed in 3106 milliseconds

1234567