/external/openssh/openbsd-compat/regress/ |
D | strtonumtest.c | 27 # define LLONG_MIN LONGLONG_MIN macro 33 # define LLONG_MIN LONG_LONG_MIN macro 67 test("-9223372036854775808", LLONG_MIN, LLONG_MAX, 1); in main() 68 test("9223372036854775807", LLONG_MIN, LLONG_MAX, 1); in main() 69 test("-9223372036854775809", LLONG_MIN, LLONG_MAX, 0); in main() 70 test("9223372036854775808", LLONG_MIN, LLONG_MAX, 0); in main() 71 test("1000000000000000000000000", LLONG_MIN, LLONG_MAX, 0); in main() 72 test("-1000000000000000000000000", LLONG_MIN, LLONG_MAX, 0); in main()
|
/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/deqp-deps/glslang/Test/ |
D | constFoldIntMin.frag | 8 int64_t w = -9223372036854775808L / -1L; // LLONG_MIN 11 int64_t z = -9223372036854775808L % -1L; // LLONG_MIN
|
/external/libcxx/test/std/language.support/support.limits/c.limits/ |
D | climits.pass.cpp | 78 #ifndef LLONG_MIN 79 #error LLONG_MIN not defined
|
/external/libcxx/test/std/depr/depr.c.headers/ |
D | limits_h.pass.cpp | 78 #ifndef LLONG_MIN 79 #error LLONG_MIN not defined
|
/external/python/cpython2/Lib/test/ |
D | test_structmembers.py | 11 LLONG_MAX, LLONG_MIN, ULLONG_MAX 61 ts.T_LONGLONG = LLONG_MIN 62 self.assertEqual(ts.T_LONGLONG, LLONG_MIN)
|
D | test_getargs2.py | 63 LLONG_MIN = -2**63 variable 307 self.assertRaises(OverflowError, getargs_L, LLONG_MIN-1) 308 self.assertEqual(LLONG_MIN, getargs_L(LLONG_MIN))
|
/external/python/cpython3/Lib/test/ |
D | test_structmembers.py | 11 LLONG_MAX, LLONG_MIN, ULLONG_MAX, \ 80 ts.T_LONGLONG = LLONG_MIN 81 self.assertEqual(ts.T_LONGLONG, LLONG_MIN)
|
D | test_getargs2.py | 53 LLONG_MIN = -2**63 variable 323 self.assertRaises(OverflowError, getargs_L, LLONG_MIN-1) 324 self.assertEqual(LLONG_MIN, getargs_L(LLONG_MIN))
|
/external/openssh/openbsd-compat/ |
D | strtoll.c | 101 cutoff = neg ? LLONG_MIN : LLONG_MAX; in strtoll() 125 acc = LLONG_MIN; in strtoll()
|
D | strtonum.c | 58 else if ((ll == LLONG_MIN && errno == ERANGE) || ll < minval) in strtonum()
|
/external/clang/lib/Headers/ |
D | limits.h | 94 #undef LLONG_MIN 99 #define LLONG_MIN (-__LONG_LONG_MAX__-1LL) macro
|
/external/python/cpython3/Modules/_io/ |
D | _iomodule.h | 97 # define PY_OFF_T_MIN LLONG_MIN 116 # define PY_OFF_T_MIN LLONG_MIN
|
/external/llvm/unittests/DebugInfo/DWARF/ |
D | DWARFFormValueTest.cpp | 111 auto LEBMin = createSLEBFormValue(LLONG_MIN); in TEST() 119 EXPECT_EQ(LEBMin.getAsSignedConstant().getValue(), LLONG_MIN); in TEST()
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/DebugInfo/DWARF/ |
D | DWARFFormValueTest.cpp | 98 auto LEBMin = createSLEBFormValue(LLONG_MIN); in TEST() 106 EXPECT_EQ(LEBMin.getAsSignedConstant().getValue(), LLONG_MIN); in TEST()
|
/external/icu/icu4c/source/tools/tzcode/ |
D | private.h | 143 # define INT_FAST64_MIN LLONG_MIN 177 # define INTMAX_MIN LLONG_MIN
|
/external/libcxx/include/ |
D | climits | 35 LLONG_MIN // C99
|
/external/libcxx/test/std/language.support/support.limits/limits/numeric.limits.members/ |
D | lowest.pass.cpp | 56 test<long long>(LLONG_MIN); in main()
|
D | min.pass.cpp | 56 test<long long>(LLONG_MIN); in main()
|
/external/iperf3/src/ |
D | cjson.c | 62 #ifndef LLONG_MIN 63 #define LLONG_MIN (-LLONG_MAX - 1LL) macro 291 else if (number <= LLONG_MIN) in parse_number() 293 item->valueint = LLONG_MIN; in parse_number() 313 else if (number <= LLONG_MIN) in cJSON_SetNumberHelper() 315 object->valueint = LLONG_MIN; in cJSON_SetNumberHelper() 2057 else if (num <= LLONG_MIN) in cJSON_CreateNumber() 2059 item->valueint = LLONG_MIN; in cJSON_CreateNumber()
|
/external/bsdiff/ |
D | extents.cc | 51 if (((val == LLONG_MAX || val == LLONG_MIN) && errno == ERANGE) || in read_llong()
|
/external/python/cpython3/PC/ |
D | pyconfig.h | 223 #define PY_LLONG_MIN LLONG_MIN
|
/external/python/cpython2/PC/ |
D | pyconfig.h | 287 #define PY_LLONG_MIN LLONG_MIN
|
/external/lua/src/ |
D | luaconf.h | 568 #define LUA_MININTEGER LLONG_MIN
|
/external/u-boot/include/linux/ |
D | kernel.h | 17 #define LLONG_MIN (-LLONG_MAX - 1) macro
|