/external/libhevc/encoder/ |
D | hme_globals.c | 916 UCHAR_MAX, //ZERO_MV_ALTREF 921 UCHAR_MAX, //SPATIAL_LEFT1 922 UCHAR_MAX, //SPATIAL_TOP1 923 UCHAR_MAX, //SPATIAL_TOP_RIGHT1 924 UCHAR_MAX, //SPATIAL_TOP_LEFT1 927 UCHAR_MAX, //PROJECTED_COLOC2 928 UCHAR_MAX, //PROJECTED_COLOC3 929 UCHAR_MAX, //PROJECTED_COLOC4 930 UCHAR_MAX, //PROJECTED_COLOC5 931 UCHAR_MAX, //PROJECTED_COLOC6 [all …]
|
/external/llvm-project/compiler-rt/test/sanitizer_common/TestCases/ |
D | ctype.c | 14 for (c = 0; c < UCHAR_MAX; c++) in check_ctype() 16 for (c = 0; c < UCHAR_MAX; c++) in check_ctype() 18 for (c = 0; c < UCHAR_MAX; c++) in check_ctype() 20 for (c = 0; c < UCHAR_MAX; c++) in check_ctype() 22 for (c = 0; c < UCHAR_MAX; c++) in check_ctype() 24 for (c = 0; c < UCHAR_MAX; c++) in check_ctype() 26 for (c = 0; c < UCHAR_MAX; c++) in check_ctype() 28 for (c = 0; c < UCHAR_MAX; c++) in check_ctype() 30 for (c = 0; c < UCHAR_MAX; c++) in check_ctype() 32 for (c = 0; c < UCHAR_MAX; c++) in check_ctype() [all …]
|
/external/llvm-project/clang/test/Analysis/ |
D | equality_tracking.c | 7 #define UCHAR_MAX (unsigned char)(~0U) macro 8 #define CHAR_MAX (char)(UCHAR_MAX & (UCHAR_MAX >> 1)) 9 #define CHAR_MIN (char)(UCHAR_MAX & ~(UCHAR_MAX >> 1))
|
/external/clang/lib/Headers/ |
D | limits.h | 44 #undef UCHAR_MAX 70 #define UCHAR_MAX (__SCHAR_MAX__*2 +1) macro 83 #define CHAR_MAX UCHAR_MAX
|
/external/llvm-project/clang/lib/Headers/ |
D | limits.h | 28 #undef UCHAR_MAX 54 #define UCHAR_MAX (__SCHAR_MAX__*2 +1) macro 67 #define CHAR_MAX UCHAR_MAX
|
/external/ppp/pppd/plugins/radius/ |
D | includes.h | 39 #ifndef UCHAR_MAX 40 # define UCHAR_MAX 255 macro
|
/external/python/cpython2/Lib/test/ |
D | test_structmembers.py | 7 CHAR_MAX, CHAR_MIN, UCHAR_MAX, \ 30 ts.T_UBYTE = UCHAR_MAX 31 self.assertEqual(ts.T_UBYTE, UCHAR_MAX) 91 ts.T_UBYTE = UCHAR_MAX+1
|
D | test_getargs2.py | 46 from _testcapi import UCHAR_MAX, USHRT_MAX, UINT_MAX, ULONG_MAX, INT_MAX, \ 139 self.assertEqual(UCHAR_MAX, getargs_b(UCHAR_MAX)) 140 self.assertRaises(OverflowError, getargs_b, UCHAR_MAX + 1) 153 self.assertEqual(UCHAR_MAX, getargs_B(-1)) 154 self.assertEqual(UCHAR_MAX, getargs_B(-1L)) 156 self.assertEqual(UCHAR_MAX, getargs_B(UCHAR_MAX)) 157 self.assertEqual(0, getargs_B(UCHAR_MAX+1)) 161 self.assertEqual(UCHAR_MAX & VERY_LARGE, getargs_B(VERY_LARGE))
|
/external/python/cpython3/Lib/test/ |
D | test_structmembers.py | 7 CHAR_MAX, CHAR_MIN, UCHAR_MAX, \ 43 ts.T_UBYTE = UCHAR_MAX 44 self.assertEqual(ts.T_UBYTE, UCHAR_MAX) 128 ts.T_UBYTE = UCHAR_MAX+1
|
/external/python/cpython3/Include/ |
D | Python.h | 13 #ifndef UCHAR_MAX 17 #if UCHAR_MAX != 255
|
/external/parameter-framework/asio-1.10.6/include/asio/detail/ |
D | thread_info_base.hpp | 58 mem[size] = (size <= UCHAR_MAX) ? static_cast<unsigned char>(size) : 0; in allocate() 65 if (size <= UCHAR_MAX) in deallocate()
|
/external/clang/test/Headers/ |
D | limits.cpp | 13 _Static_assert(SCHAR_MAX == UCHAR_MAX/2, ""); 23 _Static_assert(UCHAR_MAX == (unsigned char)~0ULL, "");
|
/external/llvm-project/clang/test/Headers/ |
D | limits.cpp | 13 _Static_assert(SCHAR_MAX == UCHAR_MAX/2, ""); 23 _Static_assert(UCHAR_MAX == (unsigned char)~0ULL, "");
|
/external/python/cpython2/Include/ |
D | Python.h | 21 #ifndef UCHAR_MAX 25 #if UCHAR_MAX != 255
|
/external/libcxx/test/std/depr/depr.c.headers/ |
D | limits_h.pass.cpp | 26 #ifndef UCHAR_MAX 27 #error UCHAR_MAX not defined
|
/external/libcxx/test/std/language.support/support.limits/c.limits/ |
D | climits.pass.cpp | 26 #ifndef UCHAR_MAX 27 #error UCHAR_MAX not defined
|
/external/llvm-project/libcxx/test/std/depr/depr.c.headers/ |
D | limits_h.pass.cpp | 27 #ifndef UCHAR_MAX 28 #error UCHAR_MAX not defined
|
/external/llvm-project/libcxx/test/std/language.support/support.limits/c.limits/ |
D | climits.pass.cpp | 27 #ifndef UCHAR_MAX 28 #error UCHAR_MAX not defined
|
/external/llvm-project/libcxx/test/std/language.support/support.limits/limits/numeric.limits.members/ |
D | max.pass.cpp | 40 test<unsigned char>(UCHAR_MAX); in main() 43 test<char8_t>(UCHAR_MAX); // ?? in main()
|
/external/libcxx/test/std/language.support/support.limits/limits/numeric.limits.members/ |
D | max.pass.cpp | 41 test<unsigned char>(UCHAR_MAX); in main() 44 test<char8_t>(UCHAR_MAX); // ?? in main()
|
/external/protobuf/src/google/protobuf/stubs/ |
D | stringpiece.cc | 172 bool lookup[UCHAR_MAX + 1] = { false }; in find_first_of() 189 bool lookup[UCHAR_MAX + 1] = { false }; in find_first_not_of() 217 bool lookup[UCHAR_MAX + 1] = { false }; in find_last_of() 238 bool lookup[UCHAR_MAX + 1] = { false }; in find_last_not_of()
|
/external/llvm-project/libclc/generic/include/clc/integer/ |
D | definitions.h | 12 #define UCHAR_MAX 255 macro
|
/external/arm-trusted-firmware/include/lib/libc/aarch32/ |
D | limits_.h | 11 #define UCHAR_MAX 0xFFU macro
|
/external/arm-trusted-firmware/include/lib/libc/aarch64/ |
D | limits_.h | 11 #define UCHAR_MAX 0xFFU macro
|
/external/libchrome/base/strings/ |
D | string_piece.cc | 211 bool lookup[UCHAR_MAX + 1] = { false }; in find_first_of() 246 bool lookup[UCHAR_MAX + 1] = { false }; in find_first_not_of() 313 bool lookup[UCHAR_MAX + 1] = { false }; in find_last_of() 358 bool lookup[UCHAR_MAX + 1] = { false }; in find_last_not_of()
|