Home
last modified time | relevance | path

Searched refs:SSIZE_MAX (Results 1 – 7 of 7) sorted by relevance

/bionic/libc/include/
Dlimits.h127 #define SSIZE_MAX LONG_MAX macro
129 #define SSIZE_MAX INT_MAX macro
/bionic/libc/upstream-openbsd/lib/libc/stdio/
Dgetdelim.c83 if (off > SSIZE_MAX || len + 1 > SSIZE_MAX - off) { in getdelim()
/bionic/libc/private/
Dbionic_fortify.h71 if (__predict_false(value > SSIZE_MAX)) { in __check_count()
/bionic/tests/headers/posix/
Dlimits_h.c197 MACRO(SSIZE_MAX); in limits_h()
/bionic/libc/include/bits/fortify/
Dunistd.h63 __clang_error_if((what) > SSIZE_MAX, "in call to '" #fn "', '" #what "' must be <= SSIZE_MAX")
/bionic/libc/bionic/
Dfortify.cpp433 dst_len_from_compiler == SIZE_MAX ? SSIZE_MAX : dst_len_from_compiler, in __vsprintf_chk()
/bionic/libc/stdio/
Dstdio.cpp1026 static_assert(INT_MAX <= SSIZE_MAX, "SSIZE_MAX too large to fit in int"); in vsnprintf()
1051 return vsnprintf(s, SSIZE_MAX, fmt, ap); in vsprintf()