/third_party/ltp/lib/newlib_tests/ |
H A D | test_parse_filesize.c | 17 if ((ret = tst_parse_filesize("1", &val, LLONG_MIN, LLONG_MAX))) { in do_test() 27 if ((ret = tst_parse_filesize("1k", &val, LLONG_MIN, LLONG_MAX))) { in do_test() 36 if ((ret = tst_parse_filesize("1m", &val, LLONG_MIN, LLONG_MAX))) { in do_test() 45 if ((ret = tst_parse_filesize("1g", &val, LLONG_MIN, LLONG_MAX))) { in do_test() 55 if ((ret = tst_parse_filesize("1K", &val, LLONG_MIN, LLONG_MAX))) { in do_test() 64 if ((ret = tst_parse_filesize("1M", &val, LLONG_MIN, LLONG_MAX))) { in do_test() 73 if ((ret = tst_parse_filesize("1G", &val, LLONG_MIN, LLONG_MAX))) { in do_test() 83 if ((ret = tst_parse_filesize("k", &val, LLONG_MIN, LLONG_MAX))) { in do_test() 92 if ((ret = tst_parse_filesize("100", &val, LLONG_MIN, 10))) { in do_test() 110 if ((ret = tst_parse_filesize("10garbage", &val, LLONG_MIN, LLONG_MA in do_test() [all...] |
/third_party/ltp/tools/sparse/sparse-src/validation/ |
H A D | div.c | 3 #define LLONG_MIN (-__LONG_LONG_MAX__ - 1) macro 11 static long long yll = LLONG_MIN / -1; 15 static long long zll = LLONG_MIN % -1;
|
/third_party/cJSON/tests/ |
H A D | parse_number.c | 125 assert_parse_int64_number("-10e20", LLONG_MIN, -10e20); in parse_number_should_parse_negative_reals() 126 assert_parse_int64_number("-123e+127", LLONG_MIN, -123e127); in parse_number_should_parse_negative_reals() 144 assert_parse_int64_number_with_type("-9223372036854775808", LLONG_MIN, -9223372036854775808.0); in parse_number_should_parse_int64_numbers()
|
H A D | misc_int64_tests.c | 125 cJSON_SetInt64NumberValue(number, LLONG_MIN); in cjson_set_number_value_should_set_numbers_with_int64() 126 TEST_ASSERT_EQUAL_INT64(LLONG_MIN, number->valueint); in cjson_set_number_value_should_set_numbers_with_int64() 127 TEST_ASSERT_EQUAL_DOUBLE((double)LLONG_MIN, number->valuedouble); in cjson_set_number_value_should_set_numbers_with_int64()
|
/third_party/skia/third_party/externals/freetype/include/freetype/config/ |
H A D | ftstdlib.h | 73 #ifdef LLONG_MIN 74 #define FT_LLONG_MIN LLONG_MIN
|
/third_party/python/Lib/test/test_capi/ |
H A D | test_structmembers.py | 12 LLONG_MAX, LLONG_MIN, ULLONG_MAX, \ 81 ts.T_LONGLONG = LLONG_MIN 82 self.assertEqual(ts.T_LONGLONG, LLONG_MIN) 13 PY_SSIZE_T_MAX, PY_SSIZE_T_MIN global() namespace
|
/third_party/tzdata/ |
H A D | private.h | 309 # ifndef LLONG_MIN 310 # define LLONG_MIN (-1 - LLONG_MAX) macro 325 # define INT_FAST64_MIN LLONG_MIN 364 # define INTMAX_MIN LLONG_MIN 845 int: INT_MIN, long: LONG_MIN, long long: LLONG_MIN, \
|
/third_party/python/Modules/_io/ |
H A D | _iomodule.h | 99 # define PY_OFF_T_MIN LLONG_MIN 118 # define PY_OFF_T_MIN LLONG_MIN
|
/third_party/musl/src/math/ |
H A D | llrintl.c | 26 if (!e && (x > LLONG_MAX || x < LLONG_MIN)) in llrintl()
|
/third_party/musl/porting/liteos_a/kernel/src/math/ |
H A D | llrintl.c | 26 if (!e && (x > LLONG_MAX || x < LLONG_MIN)) in llrintl()
|
/third_party/icu/icu4c/source/tools/tzcode/ |
H A D | private.h | 143 # define INT_FAST64_MIN LLONG_MIN 177 # define INTMAX_MIN LLONG_MIN
|
/third_party/skia/third_party/externals/icu/source/tools/tzcode/ |
H A D | private.h | 143 # define INT_FAST64_MIN LLONG_MIN 177 # define INTMAX_MIN LLONG_MIN
|
/third_party/musl/porting/liteos_m/kernel/src/stdlib/ |
H A D | strtol.c | 28 return strtox(s, p, base, LLONG_MIN); in strtoll()
|
/third_party/musl/porting/uniproton/kernel/src/stdlib/ |
H A D | strtol.c | 28 return strtox(s, p, base, LLONG_MIN); in strtoll()
|
/third_party/musl/porting/liteos_a/kernel/src/stdlib/ |
H A D | strtol.c | 28 return strtox(s, p, base, LLONG_MIN); in strtoll()
|
/third_party/musl/porting/liteos_a/kernel/src/internal/ |
H A D | floatscan.c | 51 return LLONG_MIN; in scanexp() 120 if (e10 == LLONG_MIN) { in decfloat() 373 if (e2 == LLONG_MIN) { in hexfloat()
|
/third_party/musl/porting/liteos_m/kernel/src/internal/ |
H A D | floatscan.c | 51 return LLONG_MIN;
in scanexp() 120 if (e10 == LLONG_MIN) {
in decfloat() 373 if (e2 == LLONG_MIN) {
in hexfloat()
|
/third_party/musl/porting/uniproton/kernel/src/internal/ |
H A D | floatscan.c | 51 return LLONG_MIN;
in scanexp() 120 if (e10 == LLONG_MIN) {
in decfloat() 373 if (e2 == LLONG_MIN) {
in hexfloat()
|
/third_party/musl/src/internal/ |
H A D | floatscan.c | 51 return LLONG_MIN; in scanexp() 120 if (e10 == LLONG_MIN) { in decfloat() 373 if (e2 == LLONG_MIN) { in hexfloat()
|
/third_party/musl/porting/liteos_a/user/include/ |
H A D | limits.h | 31 #define LLONG_MIN (-LLONG_MAX-1) macro
|
/third_party/musl/porting/liteos_m/user/include/ |
H A D | limits.h | 31 #define LLONG_MIN (-LLONG_MAX-1) macro
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | limits.h | 33 #define LLONG_MIN (-LLONG_MAX-1) macro
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | limits.h | 33 #define LLONG_MIN (-LLONG_MAX-1) macro
|
/third_party/musl/porting/linux/user/src/stdlib/ |
H A D | strtol.c | 28 return strtox(s, p, base, LLONG_MIN); in strtoll()
|
/third_party/musl/src/stdlib/ |
H A D | strtol.c | 28 return strtox(s, p, base, LLONG_MIN); in strtoll()
|