Home
last modified time | relevance | path

Searched refs:LLONG_MIN (Results 1 – 25 of 42) sorted by relevance

12

/external/openssh/openbsd-compat/regress/
Dstrtonumtest.c27 # 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/
Dlimits.cpp37 _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/
DconstFoldIntMin.frag8 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/
Dclimits.pass.cpp78 #ifndef LLONG_MIN
79 #error LLONG_MIN not defined
/external/libcxx/test/std/depr/depr.c.headers/
Dlimits_h.pass.cpp78 #ifndef LLONG_MIN
79 #error LLONG_MIN not defined
/external/python/cpython2/Lib/test/
Dtest_structmembers.py11 LLONG_MAX, LLONG_MIN, ULLONG_MAX
61 ts.T_LONGLONG = LLONG_MIN
62 self.assertEqual(ts.T_LONGLONG, LLONG_MIN)
Dtest_getargs2.py63 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/
Dtest_structmembers.py11 LLONG_MAX, LLONG_MIN, ULLONG_MAX, \
80 ts.T_LONGLONG = LLONG_MIN
81 self.assertEqual(ts.T_LONGLONG, LLONG_MIN)
Dtest_getargs2.py53 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/
Dstrtoll.c101 cutoff = neg ? LLONG_MIN : LLONG_MAX; in strtoll()
125 acc = LLONG_MIN; in strtoll()
Dstrtonum.c58 else if ((ll == LLONG_MIN && errno == ERANGE) || ll < minval) in strtonum()
/external/clang/lib/Headers/
Dlimits.h94 #undef LLONG_MIN
99 #define LLONG_MIN (-__LONG_LONG_MAX__-1LL) macro
/external/python/cpython3/Modules/_io/
D_iomodule.h97 # define PY_OFF_T_MIN LLONG_MIN
116 # define PY_OFF_T_MIN LLONG_MIN
/external/llvm/unittests/DebugInfo/DWARF/
DDWARFFormValueTest.cpp111 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/
DDWARFFormValueTest.cpp98 auto LEBMin = createSLEBFormValue(LLONG_MIN); in TEST()
106 EXPECT_EQ(LEBMin.getAsSignedConstant().getValue(), LLONG_MIN); in TEST()
/external/icu/icu4c/source/tools/tzcode/
Dprivate.h143 # define INT_FAST64_MIN LLONG_MIN
177 # define INTMAX_MIN LLONG_MIN
/external/libcxx/include/
Dclimits35 LLONG_MIN // C99
/external/libcxx/test/std/language.support/support.limits/limits/numeric.limits.members/
Dlowest.pass.cpp56 test<long long>(LLONG_MIN); in main()
Dmin.pass.cpp56 test<long long>(LLONG_MIN); in main()
/external/iperf3/src/
Dcjson.c62 #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/
Dextents.cc51 if (((val == LLONG_MAX || val == LLONG_MIN) && errno == ERANGE) || in read_llong()
/external/python/cpython3/PC/
Dpyconfig.h223 #define PY_LLONG_MIN LLONG_MIN
/external/python/cpython2/PC/
Dpyconfig.h287 #define PY_LLONG_MIN LLONG_MIN
/external/lua/src/
Dluaconf.h568 #define LUA_MININTEGER LLONG_MIN
/external/u-boot/include/linux/
Dkernel.h17 #define LLONG_MIN (-LLONG_MAX - 1) macro

12