Home
last modified time | relevance | path

Searched refs:CHECK_RSIZE (Results 1 – 10 of 10) sorted by relevance

/picolibc-latest/newlib/libc/stdlib/
Dlocal_s.h44 #define CHECK_RSIZE(s) 0 macro
46 #define CHECK_RSIZE(s) (RSIZE_MAX == SIZE_MAX ? 0 : (s) > RSIZE_MAX) macro
/picolibc-latest/newlib/libc/string/
Dmemset_s.c50 if (CHECK_RSIZE(smax)) { in memset_s()
55 if (CHECK_RSIZE(n)) { in memset_s()
Dmemmove_s.c50 if (CHECK_RSIZE(s1max)) { in memmove_s()
60 if (CHECK_RSIZE(n)) { in memmove_s()
Dmemcpy_s.c50 if (CHECK_RSIZE(s1max)) { in memcpy_s()
60 if (CHECK_RSIZE(n)) { in memcpy_s()
Dstrncpy_s.c50 } else if ((s1max == 0u) || (CHECK_RSIZE(s1max))) { in strncpy_s()
59 } else if (CHECK_RSIZE(n)) { in strncpy_s()
Dstrncat_s.c53 } else if ((s1max == 0u) || (CHECK_RSIZE(s1max))) { in strncat_s()
60 } else if (CHECK_RSIZE(n)) { in strncat_s()
Dstrerror_s.c53 if ((buflen == 0u) || (CHECK_RSIZE(buflen))) { in strerror_s()
Dstrcpy_s.c52 if ((s1max == 0) || (CHECK_RSIZE(s1max))) { in strcpy_s()
Dstrcat_s.c53 if ((s1max == 0) || (CHECK_RSIZE(s1max))) { in strcat_s()
/picolibc-latest/newlib/libc/tinystdio/
Dsprintf_s.c54 } else if ((bufsize == 0) || (CHECK_RSIZE(bufsize))) { in sprintf_s()