/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() 101 if ((ret = tst_parse_filesize("10", &val, 100, LLONG_MAX))) { in do_test() 110 if ((ret = tst_parse_filesize("10garbage", &val, LLONG_MIN, LLONG_MAX))) { in do_test() [all...] |
/third_party/python/Include/ |
H A D | pythread.h | 48 # define PY_TIMEOUT_MAX (LLONG_MAX / 1000) 53 # if 0xFFFFFFFELL * 1000 < LLONG_MAX 56 # define PY_TIMEOUT_MAX LLONG_MAX 59 # define PY_TIMEOUT_MAX LLONG_MAX
|
/third_party/icu/icu4c/source/tools/tzcode/ |
H A D | private.h | 139 /* Pre-C99 GCC compilers define __LONG_LONG_MAX__ instead of LLONG_MAX. */ 140 #if defined LLONG_MAX || defined __LONG_LONG_MAX__ 142 # ifdef LLONG_MAX 144 # define INT_FAST64_MAX LLONG_MAX 150 #else /* ! (defined LLONG_MAX || defined __LONG_LONG_MAX__) */ 159 #endif /* ! (defined LLONG_MAX || defined __LONG_LONG_MAX__) */ 171 # if defined LLONG_MAX || defined __LONG_LONG_MAX__ 175 # ifdef LLONG_MAX 176 # define INTMAX_MAX LLONG_MAX
|
/third_party/skia/third_party/externals/icu/source/tools/tzcode/ |
H A D | private.h | 139 /* Pre-C99 GCC compilers define __LONG_LONG_MAX__ instead of LLONG_MAX. */ 140 #if defined LLONG_MAX || defined __LONG_LONG_MAX__ 142 # ifdef LLONG_MAX 144 # define INT_FAST64_MAX LLONG_MAX 150 #else /* ! (defined LLONG_MAX || defined __LONG_LONG_MAX__) */ 159 #endif /* ! (defined LLONG_MAX || defined __LONG_LONG_MAX__) */ 171 # if defined LLONG_MAX || defined __LONG_LONG_MAX__ 175 # ifdef LLONG_MAX 176 # define INTMAX_MAX LLONG_MAX
|
/third_party/tzdata/ |
H A D | private.h | 304 /* Pre-C99 GCC compilers define __LONG_LONG_MAX__ instead of LLONG_MAX. */ 306 # ifndef LLONG_MAX 307 # define LLONG_MAX __LONG_LONG_MAX__ macro 310 # define LLONG_MIN (-1 - LLONG_MAX) 313 # define ULLONG_MAX (LLONG_MAX * 2ull + 1) 326 # define INT_FAST64_MAX LLONG_MAX 355 # ifdef LLONG_MAX 363 # define INTMAX_MAX LLONG_MAX 376 # if INTMAX_MAX == LLONG_MAX 851 int: INT_MAX, long: LONG_MAX, long long: LLONG_MAX, \ [all...] |
/third_party/musl/porting/liteos_a/user/include/ |
H A D | limits.h | 31 #define LLONG_MIN (-LLONG_MAX-1) 32 #define LLONG_MAX 0x7fffffffffffffffLL macro 33 #define ULLONG_MAX (2ULL*LLONG_MAX+1)
|
/third_party/musl/porting/liteos_m/user/include/ |
H A D | limits.h | 31 #define LLONG_MIN (-LLONG_MAX-1) 32 #define LLONG_MAX 0x7fffffffffffffffLL macro 33 #define ULLONG_MAX (2ULL*LLONG_MAX+1)
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | limits.h | 33 #define LLONG_MIN (-LLONG_MAX-1) 34 #define LLONG_MAX 0x7fffffffffffffffLL macro 35 #define ULLONG_MAX (2ULL*LLONG_MAX+1)
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | limits.h | 33 #define LLONG_MIN (-LLONG_MAX-1) 34 #define LLONG_MAX 0x7fffffffffffffffLL macro 35 #define ULLONG_MAX (2ULL*LLONG_MAX+1)
|
/third_party/ltp/testcases/kernel/io/ltp-aiodio/ |
H A D | dio_sparse.c | 70 if (tst_parse_filesize(str_writesize, &writesize, 1, LLONG_MAX)) in setup() 73 if (tst_parse_filesize(str_filesize, &filesize, 1, LLONG_MAX)) in setup() 76 if (tst_parse_filesize(str_offset, &offset, 0, LLONG_MAX)) in setup()
|
H A D | aiodio_sparse.c | 152 if (tst_parse_filesize(str_writesize, &writesize, 1, LLONG_MAX)) in setup() 155 if (tst_parse_filesize(str_filesize, &filesize, 1, LLONG_MAX)) in setup()
|
/third_party/musl/include/ |
H A D | limits.h | 31 #define LLONG_MIN (-LLONG_MAX-1) 32 #define LLONG_MAX 0x7fffffffffffffffLL macro 33 #define ULLONG_MAX (2ULL*LLONG_MAX+1)
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | limits.h | 64 #define LLONG_MIN (-LLONG_MAX-1) 65 #define LLONG_MAX 0x7fffffffffffffffLL macro 66 #define ULLONG_MAX (2ULL*LLONG_MAX+1)
|
/third_party/skia/third_party/externals/freetype/include/freetype/config/ |
H A D | ftstdlib.h | 70 #ifdef LLONG_MAX 71 #define FT_LLONG_MAX LLONG_MAX
|
/third_party/cJSON/tests/ |
H A D | misc_int64_tests.c | 121 cJSON_SetInt64NumberValue(number, LLONG_MAX); in cjson_set_number_value_should_set_numbers_with_int64() 122 TEST_ASSERT_EQUAL_INT64(LLONG_MAX, number->valueint); in cjson_set_number_value_should_set_numbers_with_int64() 123 TEST_ASSERT_EQUAL_DOUBLE((double)LLONG_MAX, number->valuedouble); in cjson_set_number_value_should_set_numbers_with_int64()
|
H A D | parse_number.c | 111 assert_parse_int64_number("123e+127", LLONG_MAX, 123e127); in parse_number_should_parse_positive_reals() 143 assert_parse_int64_number_with_type("9223372036854775807", LLONG_MAX, 9223372036854775807.0); in parse_number_should_parse_int64_numbers()
|
/third_party/python/Lib/test/test_capi/ |
H A D | test_structmembers.py | 12 LLONG_MAX, LLONG_MIN, ULLONG_MAX, \ 79 ts.T_LONGLONG = LLONG_MAX 80 self.assertEqual(ts.T_LONGLONG, LLONG_MAX) 13 PY_SSIZE_T_MAX, PY_SSIZE_T_MIN global() namespace
|
/third_party/ntfs-3g/ntfsprogs/ |
H A D | ntfsmftalloc.c | 55 #ifndef LLONG_MAX 56 # define LLONG_MAX 9223372036854775807LL macro 205 if (*s || !ll || (ll >= LLONG_MAX && errno == ERANGE)) in parse_options()
|
H A D | ntfsfallocate.c | 62 #ifndef LLONG_MAX 63 #define LLONG_MAX 9223372036854775807LL macro 211 if ((ll >= LLONG_MAX) && (errno == ERANGE)) in option_value() 257 if (ll > LLONG_MAX/1024) in option_value() 307 || (ll >= LLONG_MAX && errno == ERANGE)) in parse_options() 315 || (ll >= LLONG_MAX && errno == ERANGE)) in parse_options()
|
H A D | ntfstruncate.c | 57 #ifndef LLONG_MAX 58 # define LLONG_MAX 9223372036854775807LL macro 218 if (*s || !ll || (ll >= LLONG_MAX && errno == ERANGE)) in parse_options() 271 if (*s2 || ll < 0 || (ll >= LLONG_MAX && errno == ERANGE)) in parse_options()
|
/third_party/musl/libc-test/src/functional/ |
H A D | time.c | 72 int overflow = big && (time_t)LLONG_MAX!=LLONG_MAX; in tm2sec()
|
/third_party/python/Modules/_io/ |
H A D | _iomodule.h | 98 # define PY_OFF_T_MAX LLONG_MAX 117 # define PY_OFF_T_MAX LLONG_MAX
|
/third_party/python/Modules/_ctypes/libffi_osx/include/ |
H A D | ffi.h | 87 # ifdef LLONG_MAX 88 # define FFI_LONG_LONG_MAX LLONG_MAX
|
/third_party/python/PC/ |
H A D | pyconfig.h | 175 # define PY_SSIZE_T_MAX LLONG_MAX 228 #define PY_LLONG_MAX LLONG_MAX
|
/third_party/musl/src/math/ |
H A D | llrintl.c | 15 Note that if LLONG_MAX == 0x7fffffffffffffff && LDBL_MANT_DIG == 64 26 if (!e && (x > LLONG_MAX || x < LLONG_MIN)) in llrintl()
|