Searched defs:LLONG_MAX (Results 1 - 3 of 3) sorted by relevance

/external/clang/lib/Headers/
H A Dlimits.h95 #undef LLONG_MAX macro
98 #define LLONG_MAX __LONG_LONG_MAX__ macro
105 deprecate a macro - the code should just use LLONG_MAX and friends.
/external/bison/lib/
H A Dstrtol.c118 # define STRTOL_LONG_MAX LLONG_MAX
153 # ifndef LLONG_MAX
154 # define LLONG_MAX TYPE_MAXIMUM (long long int) macro
/external/safe-iop/src/
H A Dsafe_iop.c144 #ifndef LLONG_MAX
145 # define LLONG_MAX 9223372036854775807LL macro
148 # define LLONG_MIN (-LLONG_MAX - 1LL)
241 a=LLONG_MAX; b=1; EXPECT_FALSE(safe_add(NULL, a, b));
243 a=LLONG_MIN; b=LLONG_MAX; EXPECT_TRUE(safe_add(NULL, a, b));
244 a=LLONG_MAX/2; b=LLONG_MAX/2; EXPECT_TRUE(safe_add(NULL, a, b));
444 a=LLONG_MIN; b=LLONG_MAX; EXPECT_FALSE(safe_sub(NULL, a, b));
445 a=LLONG_MIN/2; b=LLONG_MAX; EXPECT_FALSE(safe_sub(NULL, a, b));
446 a=-2; b=LLONG_MAX; EXPECT_FALS
[all...]

Completed in 422 milliseconds