/third_party/backends/sanei/ |
H A D | sanei_tcp.c | 48 #ifndef SSIZE_MAX 49 #define SSIZE_MAX LONG_MAX macro 132 if (count > SSIZE_MAX) { in sanei_tcp_read()
|
/third_party/musl/libc-test/src/functionalext/fortify/ |
H A D | unistd.c | 120 size_t n = atoi("4") + SSIZE_MAX; in unistd_dynamic_chk_003() 161 size_t n = atoi("4") + SSIZE_MAX;; in unistd_dynamic_chk_004() 278 size_t n = strlen(buf) + SSIZE_MAX; in unistd_dynamic_chk_007() 359 size_t n = strlen(buf) + SSIZE_MAX; in unistd_dynamic_chk_009() 436 size_t n = atoi("4") + SSIZE_MAX; in unistd_dynamic_chk_011() 515 size_t n = strlen(buf) + SSIZE_MAX; in unistd_dynamic_chk_013() 590 size_t n = atoi("2") + SSIZE_MAX; in unistd_dynamic_chk_015() 665 size_t n = atoi("1") + SSIZE_MAX; in unistd_dynamic_chk_017()
|
/third_party/node/deps/openssl/openssl/include/openssl/ |
H A D | e_os2.h | 204 # if defined(SSIZE_MAX) 205 # define OSSL_SSIZE_MAX SSIZE_MAX
|
/third_party/openssl/include/openssl/ |
H A D | e_os2.h | 204 # if defined(SSIZE_MAX) 205 # define OSSL_SSIZE_MAX SSIZE_MAX
|
/third_party/openssl/ohos_lite/include/openssl/ |
H A D | e_os2.h | 215 # if defined(SSIZE_MAX) 216 # define OSSL_SSIZE_MAX SSIZE_MAX
|
/third_party/backends/backend/ |
H A D | canon.h | 100 #ifndef SSIZE_MAX 101 #define SSIZE_MAX LONG_MAX macro
|
/third_party/musl/porting/liteos_a/user/src/stdio/ |
H A D | open_wmemstream.c | 36 if (off < -base || off > SSIZE_MAX/4-base) goto fail; in wms_seek() 48 if (len2 > SSIZE_MAX/4) return 0; in wms_write()
|
/third_party/musl/src/stdio/ |
H A D | open_wmemstream.c | 36 if (off < -base || off > SSIZE_MAX/4-base) goto fail; in wms_seek() 52 if (len2 > SSIZE_MAX/4) return 0; in wms_write()
|
H A D | open_memstream.c | 33 if (off < -base || off > SSIZE_MAX-base) goto fail; in ms_seek()
|
/third_party/lwip/src/include/lwip/ |
H A D | arch.h | 177 * (e.g. INT_MAX, SSIZE_MAX). 191 * Being like that, we define it to 'int' if SSIZE_MAX is not defined. 193 #ifdef SSIZE_MAX 194 /* If SSIZE_MAX is defined, unistd.h should provide the type as well */ 201 #else /* SSIZE_MAX */ 203 #define SSIZE_MAX INT_MAX macro 204 #endif /* SSIZE_MAX */
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
H A D | limits.h | 41 #define SSIZE_MAX LONG_MAX macro
|
/third_party/musl/porting/liteos_a_newlib/kernel/include/ |
H A D | limits.h | 37 #define SSIZE_MAX LONG_MAX macro
|
/third_party/libuv/src/ |
H A D | strscpy.c | 23 #include <limits.h> /* SSIZE_MAX */ 30 return i > SSIZE_MAX ? UV_E2BIG : (ssize_t) i; in uv__strscpy()
|
/third_party/node/deps/uv/src/ |
H A D | strscpy.c | 23 #include <limits.h> /* SSIZE_MAX */ 30 return i > SSIZE_MAX ? UV_E2BIG : (ssize_t) i; in uv__strscpy()
|
/third_party/musl/porting/liteos_a_newlib/kernel/include/sys/ |
H A D | types.h | 44 #define SSIZE_MAX LONG_MAX macro
|
/third_party/musl/porting/liteos_a/user/include/ |
H A D | limits.h | 53 #define SSIZE_MAX LONG_MAX macro
|
/third_party/musl/porting/liteos_m/user/include/ |
H A D | limits.h | 53 #define SSIZE_MAX LONG_MAX macro
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | limits.h | 55 #define SSIZE_MAX LONG_MAX macro
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | limits.h | 55 #define SSIZE_MAX LONG_MAX macro
|
/third_party/musl/include/ |
H A D | limits.h | 58 #define SSIZE_MAX LONG_MAX macro
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | limits.h | 88 #define SSIZE_MAX LONG_MAX macro
|
/third_party/musl/libc-test/src/api/ |
H A D | limits.c | 82 C(SSIZE_MAX) in f()
|
/third_party/musl/porting/linux/user/src/fortify/ |
H A D | fortify.c | 165 __fortify_error("%s: %s %zu > SSIZE_MAX\n", fn, identifier, value); in __diagnose_count() 383 dst_len_from_compiler == SIZE_MAX ? SSIZE_MAX : dst_len_from_compiler, in __vsprintf_chk() 390 #undef SSIZE_MAX macro
|
/third_party/musl/src/fortify/linux/ |
H A D | fortify.c | 176 __fortify_error("%s: %s %zu > SSIZE_MAX\n", fn, identifier, value); in __diagnose_count() 394 dst_len_from_compiler == SIZE_MAX ? SSIZE_MAX : dst_len_from_compiler, in __vsprintf_chk() 401 #undef SSIZE_MAX macro
|
/third_party/backends/backend/pixma/ |
H A D | pixma_bjnp.c | 109 #ifndef SSIZE_MAX 110 # define SSIZE_MAX LONG_MAX macro 1556 * NOTE: len may not exceed SSIZE_MAX (as that is max for recv) in bjnp_recv_data() 1557 * len will be restricted to SSIZE_MAX to be sure in bjnp_recv_data() 1582 else if ( *len > SSIZE_MAX ) in bjnp_recv_data() 1586 (long)*len, SSIZE_MAX)); in bjnp_recv_data() 1587 *len = SSIZE_MAX; in bjnp_recv_data()
|