/external/libvpx/libvpx/vp8/common/ |
D | sad_c.c | 85 sad_array[0] = vp8_sad16x16_c(src_ptr, src_stride, ref_ptr + 0, ref_stride, UINT_MAX); in vp8_sad16x16x3_c() 86 sad_array[1] = vp8_sad16x16_c(src_ptr, src_stride, ref_ptr + 1, ref_stride, UINT_MAX); in vp8_sad16x16x3_c() 87 sad_array[2] = vp8_sad16x16_c(src_ptr, src_stride, ref_ptr + 2, ref_stride, UINT_MAX); in vp8_sad16x16x3_c() 94 …_array[0] = (unsigned short)vp8_sad16x16_c(src_ptr, src_stride, ref_ptr + 0, ref_stride, UINT_MAX); in vp8_sad16x16x8_c() 95 …_array[1] = (unsigned short)vp8_sad16x16_c(src_ptr, src_stride, ref_ptr + 1, ref_stride, UINT_MAX); in vp8_sad16x16x8_c() 96 …_array[2] = (unsigned short)vp8_sad16x16_c(src_ptr, src_stride, ref_ptr + 2, ref_stride, UINT_MAX); in vp8_sad16x16x8_c() 97 …_array[3] = (unsigned short)vp8_sad16x16_c(src_ptr, src_stride, ref_ptr + 3, ref_stride, UINT_MAX); in vp8_sad16x16x8_c() 98 …_array[4] = (unsigned short)vp8_sad16x16_c(src_ptr, src_stride, ref_ptr + 4, ref_stride, UINT_MAX); in vp8_sad16x16x8_c() 99 …_array[5] = (unsigned short)vp8_sad16x16_c(src_ptr, src_stride, ref_ptr + 5, ref_stride, UINT_MAX); in vp8_sad16x16x8_c() 100 …_array[6] = (unsigned short)vp8_sad16x16_c(src_ptr, src_stride, ref_ptr + 6, ref_stride, UINT_MAX); in vp8_sad16x16x8_c() [all …]
|
D | mfqe.c | 163 sad = (vp8_sad16x16(y, y_stride, yd, yd_stride, UINT_MAX) + 128) >> 8; in multiframe_quality_enhance_block() 164 usad = (vp8_sad8x8(u, uv_stride, ud, uvd_stride, UINT_MAX) + 32) >> 6; in multiframe_quality_enhance_block() 165 vsad = (vp8_sad8x8(v, uv_stride, vd, uvd_stride, UINT_MAX)+ 32) >> 6; in multiframe_quality_enhance_block() 180 sad = (vp8_sad8x8(y, y_stride, yd, yd_stride, UINT_MAX) + 32) >> 6; in multiframe_quality_enhance_block() 181 usad = (vp8_sad4x4(u, uv_stride, ud, uvd_stride, UINT_MAX) + 8) >> 4; in multiframe_quality_enhance_block() 182 vsad = (vp8_sad4x4(v, uv_stride, vd, uvd_stride, UINT_MAX) + 8) >> 4; in multiframe_quality_enhance_block()
|
/external/clang/test/Analysis/ |
D | additive-folding-range-constraints.c | 5 #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}} in smallAdjustmentGT() 17 clang_analyzer_eval(a == UINT_MAX-1 || a == UINT_MAX); // expected-warning{{TRUE}} in smallAdjustmentGT() 22 clang_analyzer_eval(a < UINT_MAX-1 || a == UINT_MAX); // expected-warning{{TRUE}} in smallAdjustmentGE() 24 clang_analyzer_eval(a == UINT_MAX-1); // expected-warning{{TRUE}} in smallAdjustmentGE() 29 clang_analyzer_eval(a == 0 || a == UINT_MAX); // expected-warning{{TRUE}} in smallAdjustmentLT() 34 clang_analyzer_eval(a == 0 || a == 1 || a == UINT_MAX); // expected-warning{{TRUE}} in smallAdjustmentLE() 42 if (a-2 > UINT_MAX-1) in largeAdjustmentGT() 49 if (a-2 >= UINT_MAX-1) in largeAdjustmentGE() [all …]
|
D | additive-folding.cpp | 5 #define UINT_MAX (~0U) macro 6 #define INT_MAX (UINT_MAX & (UINT_MAX >> 1)) 44 if (a == UINT_MAX) { in eq_ne() 46 clang_analyzer_eval(a-1 == UINT_MAX-1); // expected-warning{{TRUE}} in eq_ne() 49 clang_analyzer_eval(a-1 != UINT_MAX-1); // expected-warning{{TRUE}} in eq_ne() 75 if (a >= UINT_MAX) in baselineGE() 76 clang_analyzer_eval(a == UINT_MAX); // expected-warning{{TRUE}} in baselineGE() 78 clang_analyzer_eval(a != UINT_MAX); // expected-warning{{TRUE}} in baselineGE() 82 if (a < UINT_MAX) in baselineLT() 83 clang_analyzer_eval(a != UINT_MAX); // expected-warning{{TRUE}} in baselineLT() [all …]
|
/external/qemu/audio/ |
D | rate_template.h | 51 if (rate->opos_inc == (1ULL + UINT_MAX)) { in NAME() 85 t = (rate->opos & UINT_MAX) * (1.f / UINT_MAX); in NAME() 87 t = (rate->opos & UINT_MAX) / (mixeng_real) UINT_MAX; in NAME() 93 out.l = (ilast.l * ((int64_t) UINT_MAX - t) + icur.l * t) >> 32; in NAME() 94 out.r = (ilast.r * ((int64_t) UINT_MAX - t) + icur.r * t) >> 32; in NAME()
|
/external/webkit/Source/WebCore/page/ |
D | DragActions.h | 39 DragDestinationActionAny = UINT_MAX 49 DragSourceActionAny = UINT_MAX 61 DragOperationEvery = UINT_MAX
|
/external/e2fsprogs/intl/ |
D | gmo.h | 51 #ifndef UINT_MAX 52 # define UINT_MAX UINT_MAX_32_BITS macro 55 #if UINT_MAX == UINT_MAX_32_BITS
|
/external/stlport/test/unit/ |
D | macro_checks.cpp | 93 #if !defined (UINT_MAX) 94 # error Missing UINT_MAX definition. 97 #if (UINT_MAX < 0) 98 # error Weird UINT_MAX macro value.
|
/external/chromium/base/ |
D | sync_socket_win.cc | 117 ((length - count) <= UINT_MAX) ? (length - count) : UINT_MAX); in Send() 133 ((length - count) <= UINT_MAX) ? (length - count) : UINT_MAX); in Receive()
|
/external/valgrind/main/none/tests/s390x/ |
D | lpr.c | 81 t32(INT_MAX); t32(INT_MIN); t32(UINT_MAX); in main() 85 t64(INT_MAX); t64(INT_MIN); t64(UINT_MAX); in main() 90 t3264(INT_MAX); t3264(INT_MIN); t3264(UINT_MAX); in main()
|
/external/libvpx/libvpx/test/ |
D | sad_test.cc | 136 CheckSad(UINT_MAX); in TEST_P() 142 CheckSad(UINT_MAX); in TEST_P() 150 CheckSad(UINT_MAX); in TEST_P() 161 CheckSad(UINT_MAX); in TEST_P() 170 CheckSad(UINT_MAX); in TEST_P()
|
/external/srec/portable/src/ |
D | pcrc.c | 29 #if (UINT_MAX >= 0xFFFFFFFFU) 72 #elif (UINT_MAX >= 0xFFFFU)
|
/external/clang/lib/Headers/ |
D | limits.h | 51 #undef UINT_MAX 73 #define UINT_MAX (__INT_MAX__ *2U +1U) macro
|
/external/chromium/chrome/browser/ |
D | browser_main_posix.cc | 99 sleep(UINT_MAX); in ShutdownFDReadError() 105 sleep(UINT_MAX); in ShutdownFDClosedError() 111 sleep(UINT_MAX); in CloseAllBrowsersAndExitPosted()
|
/external/webkit/Source/WebCore/bindings/js/ |
D | JSHTMLOptionsCollectionCustom.cpp | 53 else if (lengthValue > static_cast<double>(UINT_MAX)) in setLength() 54 newLength = UINT_MAX; in setLength()
|
/external/safe-iop/src/ |
D | safe_iop.c | 285 a=1; b=UINT_MAX; EXPECT_FALSE(safe_add(NULL, a, b)); in T_add_u32() 286 a=UINT_MAX/2; b=a+2; EXPECT_FALSE(safe_add(NULL, a, b)); in T_add_u32() 287 a=UINT_MAX/2; b=a; EXPECT_TRUE(safe_add(NULL, a, b)); in T_add_u32() 288 a=UINT_MAX/2; b=a+1; EXPECT_TRUE(safe_add(NULL, a, b)); in T_add_u32() 290 a=0; b=UINT_MAX; EXPECT_TRUE(safe_add(NULL, a, b)); in T_add_u32() 495 a=UINT_MAX-1; b=UINT_MAX; EXPECT_FALSE(safe_sub(NULL, a, b)); in T_sub_u32() 496 a=UINT_MAX; b=UINT_MAX; EXPECT_TRUE(safe_sub(NULL, a, b)); in T_sub_u32() 716 a=UINT_MAX-1; b=2; EXPECT_FALSE(safe_mul(NULL, a, b)); in T_mul_u32() 717 a=2; b=UINT_MAX-1; EXPECT_FALSE(safe_mul(NULL, a, b)); in T_mul_u32() 718 a=UINT_MAX; b=2; EXPECT_FALSE(safe_mul(NULL, a, b)); in T_mul_u32() [all …]
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
D | sanitizer_printf_test.cc | 119 TestMinMax<unsigned>("%u-%u", 0, UINT_MAX); // NOLINT in TEST() 121 TestMinMax<unsigned>("%x-%x", 0, UINT_MAX); // NOLINT in TEST()
|
/external/webkit/Source/JavaScriptCore/runtime/ |
D | UString.h | 105 size_t reverseFind(UChar c, unsigned start = UINT_MAX) const 107 size_t reverseFind(const UString& str, unsigned start = UINT_MAX) const 110 UString substringSharingImpl(unsigned pos, unsigned len = UINT_MAX) const;
|
/external/webkit/Source/JavaScriptCore/wtf/text/ |
D | WTFString.h | 174 size_t reverseFind(UChar c, unsigned start = UINT_MAX) const 176 size_t reverseFind(const String& str, unsigned start = UINT_MAX) const 184 size_t reverseFindIgnoringCase(const String& str, unsigned start = UINT_MAX) const 227 String substring(unsigned pos, unsigned len = UINT_MAX) const; 228 String substringSharingImpl(unsigned pos, unsigned len = UINT_MAX) const; 444 …erseFind(const UChar* characters, unsigned length, UChar matchCharacter, unsigned index = UINT_MAX)
|
D | StringImpl.h | 262 PassRefPtr<StringImpl> substring(unsigned pos, unsigned len = UINT_MAX); 304 size_t reverseFind(UChar, unsigned index = UINT_MAX); 305 size_t reverseFind(StringImpl*, unsigned index = UINT_MAX); 306 size_t reverseFindIgnoringCase(StringImpl*, unsigned index = UINT_MAX);
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
D | V8HTMLOptionsCollectionCustom.cpp | 106 else if (v > static_cast<double>(UINT_MAX)) in lengthAccessorSetter() 107 newLength = UINT_MAX; in lengthAccessorSetter()
|
/external/webkit/Source/WebKit/chromium/public/ |
D | WebDragOperation.h | 50 WebDragOperationEvery = UINT_MAX
|
/external/webkit/Source/WebCore/platform/text/ |
D | Base64.cpp | 79 const unsigned maxInputBufferSize = UINT_MAX / 77 * 76 / 4 * 3 - 2; in base64Encode() 136 if (in.size() > UINT_MAX) in base64Decode()
|
/external/dropbear/libtommath/mtest/ |
D | mpi-types.h | 11 #define MP_WORD_MAX UINT_MAX
|
/external/webkit/Source/WebCore/storage/ |
D | StorageMap.cpp | 40 , m_iteratorIndex(UINT_MAX) in StorageMap() 57 m_iteratorIndex = UINT_MAX; in invalidateIterator()
|