/external/openssh/openbsd-compat/regress/ |
D | strtonumtest.c | 25 #if defined(LONGLONG_MAX) && !defined(LLONG_MAX) 26 # define LLONG_MAX LONGLONG_MAX macro 31 #if defined(LONG_LONG_MAX) && !defined(LLONG_MAX) 32 # define LLONG_MAX LONG_LONG_MAX macro 63 test("0", 2, LLONG_MAX, 0); in main() 64 test("-2", 0, LLONG_MAX, 0); in main() 65 test("0", -5, LLONG_MAX, 1); in main() 66 test("-3", -3, LLONG_MAX, 1); in main() 67 test("-9223372036854775808", LLONG_MIN, LLONG_MAX, 1); in main() 68 test("9223372036854775807", LLONG_MIN, LLONG_MAX, 1); in main() [all …]
|
/external/icu/icu4c/source/tools/tzcode/ |
D | private.h | 140 #if defined LLONG_MAX || defined __LONG_LONG_MAX__ 142 # ifdef LLONG_MAX 144 # define INT_FAST64_MAX LLONG_MAX 171 # if defined LLONG_MAX || defined __LONG_LONG_MAX__ 175 # ifdef LLONG_MAX 176 # define INTMAX_MAX LLONG_MAX
|
/external/llvm/unittests/DebugInfo/DWARF/ |
D | DWARFFormValueTest.cpp | 101 auto UMax = createULEBFormValue(LLONG_MAX); in TEST() 102 auto TooBig = createULEBFormValue(uint64_t(LLONG_MAX) + 1); in TEST() 103 EXPECT_EQ(UMax.getAsSignedConstant().getValue(), LLONG_MAX); in TEST() 112 auto LEBMax = createSLEBFormValue(LLONG_MAX); in TEST() 120 EXPECT_EQ(LEBMax.getAsSignedConstant().getValue(), LLONG_MAX); in TEST()
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/DebugInfo/DWARF/ |
D | DWARFFormValueTest.cpp | 88 auto UMax = createULEBFormValue(LLONG_MAX); in TEST() 89 auto TooBig = createULEBFormValue(uint64_t(LLONG_MAX) + 1); in TEST() 90 EXPECT_EQ(UMax.getAsSignedConstant().getValue(), LLONG_MAX); in TEST() 99 auto LEBMax = createSLEBFormValue(LLONG_MAX); in TEST() 107 EXPECT_EQ(LEBMax.getAsSignedConstant().getValue(), LLONG_MAX); in TEST()
|
/external/clang/test/Headers/ |
D | limits.cpp | 37 _Static_assert(LLONG_MAX == -(LLONG_MIN+1LL), ""); 38 _Static_assert(LLONG_MIN == -LLONG_MAX-1LL, ""); 41 int LLONG_MIN, LLONG_MAX, ULLONG_MAX; // Not defined. variable
|
/external/openssh/openbsd-compat/ |
D | fmt_scaled.c | 128 if (fpart >= LLONG_MAX / 10) { in scan_scaled() 139 if (whole >= LLONG_MAX / 10) { in scan_scaled() 173 if (whole >= LLONG_MAX / scale_fact) { in scan_scaled() 184 while (fpart >= LLONG_MAX / scale_fact) { in scan_scaled()
|
D | strtoll.c | 101 cutoff = neg ? LLONG_MIN : LLONG_MAX; in strtoll() 135 acc = LLONG_MAX; in strtoll()
|
/external/libcxx/test/std/language.support/support.limits/c.limits/ |
D | climits.pass.cpp | 82 #ifndef LLONG_MAX 83 #error LLONG_MAX not defined
|
/external/libcxx/test/std/depr/depr.c.headers/ |
D | limits_h.pass.cpp | 82 #ifndef LLONG_MAX 83 #error LLONG_MAX not defined
|
/external/python/cpython2/Lib/test/ |
D | test_structmembers.py | 11 LLONG_MAX, LLONG_MIN, ULLONG_MAX 59 ts.T_LONGLONG = LLONG_MAX 60 self.assertEqual(ts.T_LONGLONG, LLONG_MAX)
|
/external/python/cpython3/Lib/test/ |
D | test_structmembers.py | 11 LLONG_MAX, LLONG_MIN, ULLONG_MAX, \ 78 ts.T_LONGLONG = LLONG_MAX 79 self.assertEqual(ts.T_LONGLONG, LLONG_MAX)
|
/external/clang/lib/Headers/ |
D | limits.h | 95 #undef LLONG_MAX 98 #define LLONG_MAX __LONG_LONG_MAX__ macro
|
/external/clang/INPUTS/ |
D | c99-intconst-1.c | 81 long long int, (C) <= LLONG_MAX) 87 long long int, (C) <= LLONG_MAX, \ 95 long long int, (C) <= LLONG_MAX) 99 long long int, (C) <= LLONG_MAX, \ 105 first_of2(long long int, (C) <= LLONG_MAX, \ 166 (LLONG_MAX >> ((B)-2)/3 >> ((B)-2)/3 \
|
/external/iperf3/src/ |
D | cjson.c | 59 #ifndef LLONG_MAX 60 #define LLONG_MAX 9223372036854775807LL macro 63 #define LLONG_MIN (-LLONG_MAX - 1LL) 287 if (number >= LLONG_MAX) in parse_number() 289 item->valueint = LLONG_MAX; in parse_number() 309 if (number >= LLONG_MAX) in cJSON_SetNumberHelper() 311 object->valueint = LLONG_MAX; in cJSON_SetNumberHelper() 353 if (needed > LLONG_MAX) in ensure() 370 if (needed > (LLONG_MAX / 2)) in ensure() 373 if (needed <= LLONG_MAX) in ensure() [all …]
|
/external/python/cpython3/Modules/_io/ |
D | _iomodule.h | 96 # define PY_OFF_T_MAX LLONG_MAX 115 # define PY_OFF_T_MAX LLONG_MAX
|
/external/python/cpython2/Modules/_ctypes/libffi_arm_wince/ |
D | ffi.h | 76 # ifdef LLONG_MAX 77 # define FFI_LONG_LONG_MAX LLONG_MAX
|
/external/toybox/toys/pending/ |
D | dd.c | 124 TT.c_count = atolx_range(arg, 0, LLONG_MAX); in dd_main() 128 TT.out.offset = atolx_range(arg, 0, LLONG_MAX); in dd_main() 130 TT.in.offset = atolx_range(arg, 0, LLONG_MAX); in dd_main()
|
/external/python/cpython3/Modules/_ctypes/libffi_msvc/ |
D | ffi.h | 76 # ifdef LLONG_MAX 77 # define FFI_LONG_LONG_MAX LLONG_MAX
|
/external/python/cpython2/Modules/_ctypes/libffi_msvc/ |
D | ffi.h | 76 # ifdef LLONG_MAX 77 # define FFI_LONG_LONG_MAX LLONG_MAX
|
/external/python/cpython3/Modules/_ctypes/libffi_osx/include/ |
D | ffi.h | 87 # ifdef LLONG_MAX 88 # define FFI_LONG_LONG_MAX LLONG_MAX
|
/external/python/cpython2/Modules/_ctypes/libffi_osx/include/ |
D | ffi.h | 87 # ifdef LLONG_MAX 88 # define FFI_LONG_LONG_MAX LLONG_MAX
|
/external/strace/ |
D | string_to_uint.c | 53 || (val == LLONG_MAX && errno == ERANGE)) in string_to_uint_ex()
|
D | string_to_uint.h | 66 return string_to_uint_upto(str, LLONG_MAX); in string_to_ulonglong()
|
/external/python/cpython2/android_x86/libffi/ |
D | ffi.h | 87 # ifdef LLONG_MAX 88 # define FFI_LONG_LONG_MAX LLONG_MAX
|
/external/u-boot/include/linux/ |
D | kernel.h | 16 #define LLONG_MAX ((long long)(~0ULL>>1)) macro 17 #define LLONG_MIN (-LLONG_MAX - 1)
|