Searched refs:LLONG_MIN (Results 1 – 14 of 14) sorted by relevance
/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/dbus/tools/ |
D | strtoll.c | 49 #ifndef LLONG_MIN 50 # define LLONG_MIN (-LLONG_MAX - 1LL) macro 123 cutoff = neg ? (unsigned long long)-(LLONG_MIN + LLONG_MAX) + LLONG_MAX in strtoll() 147 acc = neg ? LLONG_MIN : LLONG_MAX; in strtoll()
|
D | strtoull.c | 49 #ifndef LLONG_MIN 50 # define LLONG_MIN (-LLONG_MAX - 1LL) macro
|
/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 | 93 #undef LLONG_MIN 98 #define LLONG_MIN (-__LONG_LONG_MAX__-1LL) macro
|
/external/safe-iop/src/ |
D | safe_iop.c | 147 #ifndef LLONG_MIN 148 # define LLONG_MIN (-LLONG_MAX - 1LL) macro 240 a=LLONG_MIN; b=-1; EXPECT_FALSE(safe_add(NULL, a, b)); in T_add_longlong() 243 a=LLONG_MIN; b=LLONG_MAX; EXPECT_TRUE(safe_add(NULL, a, b)); in T_add_longlong() 443 a=LLONG_MIN; b=1; EXPECT_FALSE(safe_sub(NULL, a, b)); in T_sub_longlong() 444 a=LLONG_MIN; b=LLONG_MAX; EXPECT_FALSE(safe_sub(NULL, a, b)); in T_sub_longlong() 445 a=LLONG_MIN/2; b=LLONG_MAX; EXPECT_FALSE(safe_sub(NULL, a, b)); in T_sub_longlong() 645 a=LLONG_MIN; b=-1; EXPECT_FALSE(safe_mul(NULL, a, b)); in T_mul_longlong() 646 a=LLONG_MIN; b=-2; EXPECT_FALSE(safe_mul(NULL, a, b)); in T_mul_longlong() 653 a=LLONG_MIN; b=0; EXPECT_TRUE(safe_mul(NULL, a, b)); in T_mul_longlong() [all …]
|
/external/kernel-headers/original/linux/ |
D | kernel.h | 28 #define LLONG_MIN (-LLONG_MAX - 1) macro
|
/external/clang/tools/libclang/ |
D | CXType.cpp | 230 return LLONG_MIN; in clang_getEnumConstantDeclValue() 233 return LLONG_MIN; in clang_getEnumConstantDeclValue()
|
/external/astl/include/ |
D | limits | 207 static long long min() { return LLONG_MIN; }
|
/external/openssh/ |
D | configure.ac | 2536 # compute LLONG_MIN and LLONG_MAX if we don't know them. 2583 #if defined(LLONG_MIN) && defined(LLONG_MAX) 2584 fprintf(stderr, "Using system header for LLONG_MIN and LLONG_MAX\n"); 2585 llmin = LLONG_MIN; 2588 fprintf(stderr, "Calculating LLONG_MIN and LLONG_MAX\n"); 2620 AC_DEFINE_UNQUOTED([LLONG_MIN], [${llong_min}LL], definition
|
D | config.h.in | 1250 #undef LLONG_MIN
|
D | configure | 11631 llmin = LLONG_MIN;
|
/external/webkit/Source/JavaScriptCore/ |
D | ChangeLog-2010-05-24 | 21787 Build fix: use std::numeric_limits<long long>::min() instead of LLONG_MIN 21788 since LLONG_MIN is not defined in standard c++.
|