Searched refs:SSIZE_MAX (Results 1 – 8 of 8) sorted by relevance
/bionic/libc/include/ |
D | limits.h | 127 #define SSIZE_MAX LONG_MAX macro 129 #define SSIZE_MAX INT_MAX macro
|
/bionic/libc/upstream-openbsd/lib/libc/stdio/ |
D | getdelim.c | 83 if (off > SSIZE_MAX || len + 1 > SSIZE_MAX - off) { in getdelim()
|
/bionic/libc/include/bits/fortify/ |
D | unistd.h | 62 __clang_error_if((what) > SSIZE_MAX, "in call to '" #fn "', '" #what "' must be <= SSIZE_MAX") 69 ((__bos_dynamic_check_impl_and((bos_val), >=, (index), (bos_val) <= SSIZE_MAX) && \ 70 __builtin_constant_p(index) && (index) <= SSIZE_MAX))
|
/bionic/libc/private/ |
D | bionic_fortify.h | 75 if (__predict_false(value > SSIZE_MAX)) { in __check_count()
|
/bionic/tests/headers/posix/ |
D | limits_h.c | 211 MACRO(SSIZE_MAX); in limits_h()
|
/bionic/tests/ |
D | clang_fortify_tests.cpp | 589 const size_t count = static_cast<size_t>(SSIZE_MAX) + 1; in FORTIFY_TEST()
|
/bionic/libc/bionic/ |
D | fortify.cpp | 430 dst_len_from_compiler == SIZE_MAX ? SSIZE_MAX : dst_len_from_compiler, in __vsprintf_chk()
|
/bionic/libc/stdio/ |
D | stdio.cpp | 1019 static_assert(INT_MAX <= SSIZE_MAX, "SSIZE_MAX too large to fit in int"); in vsnprintf() 1044 return vsnprintf(s, SSIZE_MAX, fmt, ap); in vsprintf()
|