/external/python/cpython2/Python/ |
D | mystrtoul.c | 23 ULONG_MAX / 2, 24 ULONG_MAX / 3, 25 ULONG_MAX / 4, 26 ULONG_MAX / 5, 27 ULONG_MAX / 6, 28 ULONG_MAX / 7, 29 ULONG_MAX / 8, 30 ULONG_MAX / 9, 31 ULONG_MAX / 10, 32 ULONG_MAX / 11, [all …]
|
/external/python/cpython3/Python/ |
D | mystrtoul.c | 23 ULONG_MAX / 2, 24 ULONG_MAX / 3, 25 ULONG_MAX / 4, 26 ULONG_MAX / 5, 27 ULONG_MAX / 6, 28 ULONG_MAX / 7, 29 ULONG_MAX / 8, 30 ULONG_MAX / 9, 31 ULONG_MAX / 10, 32 ULONG_MAX / 11, [all …]
|
/external/clang/test/Analysis/ |
D | index-type.c | 29 #define ULONG_MAX (~0ul) macro 30 #define BIG_INDEX (ULONG_MAX/16) 33 char arr[ULONG_MAX/8-1]; in testIndexTooBig64()
|
/external/llvm-project/clang/test/Analysis/ |
D | index-type.c | 29 #define ULONG_MAX (~0ul) macro 30 #define BIG_INDEX (ULONG_MAX/16) 33 char arr[ULONG_MAX/8-1]; in testIndexTooBig64()
|
/external/openssh/openbsd-compat/ |
D | strtoul.c | 79 cutoff = ULONG_MAX / (unsigned long)base; in strtoul() 80 cutlim = ULONG_MAX % (unsigned long)base; in strtoul() 94 acc = ULONG_MAX; in strtoul()
|
/external/arm-trusted-firmware/lib/libc/ |
D | strtoul.c | 84 cutoff = ULONG_MAX / base; in strtoul() 85 cutlim = ULONG_MAX % base; in strtoul() 106 acc = ULONG_MAX; in strtoul()
|
/external/iproute2/tc/ |
D | em_cmp.c | 71 if (offset == ULONG_MAX) in cmp_parse_eopt() 84 if (layer == ULONG_MAX) in cmp_parse_eopt() 98 if (mask == ULONG_MAX) in cmp_parse_eopt() 117 if (value == ULONG_MAX) in cmp_parse_eopt()
|
D | em_u32.c | 64 if (key == ULONG_MAX) in u32_parse_eopt() 72 if (mask == ULONG_MAX) in u32_parse_eopt() 98 if (offset == ULONG_MAX) in u32_parse_eopt()
|
D | em_nbyte.c | 65 if (offset == ULONG_MAX) in nbyte_parse_eopt() 78 if (layer == ULONG_MAX) in nbyte_parse_eopt()
|
/external/jsoncpp/test/data/ |
D | legacy_test_real_09.json | 2 // as ULONG_MAX in base 10 and digit less than ULONG_MAX's last digit in order
|
D | legacy_test_real_09.expected | 2 // as ULONG_MAX in base 10 and digit less than ULONG_MAX's last digit in order
|
/external/clang/test/Headers/ |
D | limits.cpp | 16 _Static_assert(LONG_MAX == ULONG_MAX/2, ""); 26 _Static_assert(ULONG_MAX == (unsigned long)~0ULL, "");
|
/external/llvm-project/clang/test/Headers/ |
D | limits.cpp | 16 _Static_assert(LONG_MAX == ULONG_MAX/2, ""); 26 _Static_assert(ULONG_MAX == (unsigned long)~0ULL, "");
|
/external/libcxx/test/std/depr/depr.c.headers/ |
D | limits_h.pass.cpp | 74 #ifndef ULONG_MAX 75 #error ULONG_MAX not defined
|
/external/libcxx/test/std/language.support/support.limits/c.limits/ |
D | climits.pass.cpp | 74 #ifndef ULONG_MAX 75 #error ULONG_MAX not defined
|
/external/llvm-project/libcxx/test/std/depr/depr.c.headers/ |
D | limits_h.pass.cpp | 75 #ifndef ULONG_MAX 76 #error ULONG_MAX not defined
|
/external/llvm-project/libcxx/test/std/language.support/support.limits/c.limits/ |
D | climits.pass.cpp | 75 #ifndef ULONG_MAX 76 #error ULONG_MAX not defined
|
/external/google-breakpad/src/common/linux/ |
D | elf_core_dump.h | 55 #if ULONG_MAX == 0xffffffff 57 #elif ULONG_MAX == 0xffffffffffffffff
|
/external/kernel-headers/original/uapi/linux/ |
D | shm.h | 23 #define SHMMAX (ULONG_MAX - (1UL << 24)) /* max shared seg size (bytes) */ 24 #define SHMALL (ULONG_MAX - (1UL << 24)) /* max shm system wide (pages) */
|
/external/python/cpython2/Lib/test/ |
D | test_structmembers.py | 10 LONG_MAX, LONG_MIN, ULONG_MAX, \ 54 ts.T_ULONG = ULONG_MAX 55 self.assertEqual(ts.T_ULONG, ULONG_MAX)
|
/external/clang/lib/Headers/ |
D | limits.h | 53 #undef ULONG_MAX 73 #define ULONG_MAX (__LONG_MAX__ *2UL+1UL) macro
|
/external/llvm-project/clang/lib/Headers/ |
D | limits.h | 37 #undef ULONG_MAX 57 #define ULONG_MAX (__LONG_MAX__ *2UL+1UL) macro
|
/external/python/cpython3/Lib/test/ |
D | test_structmembers.py | 10 LONG_MAX, LONG_MIN, ULONG_MAX, \ 67 ts.T_ULONG = ULONG_MAX 68 self.assertEqual(ts.T_ULONG, ULONG_MAX)
|
/external/arm-trusted-firmware/include/lib/libc/ |
D | stdint.h | 66 #define UINTPTR_MAX ULONG_MAX 75 #define SIZE_MAX ULONG_MAX
|
/external/llvm-project/compiler-rt/lib/scudo/standalone/tests/ |
D | strings_test.cpp | 84 testAgainstLibc<unsigned long>("%zu-%zu", 0, ULONG_MAX); in TEST() 85 testAgainstLibc<unsigned long>("%zx-%zx", 0, ULONG_MAX); in TEST()
|