/picolibc-latest/newlib/libc/include/ |
D | wchar.h | 105 wchar_t *fgetws (wchar_t *__restrict, int, __FILE *__restrict); 107 wchar_t *fgetws_unlocked (wchar_t *__restrict, int, __FILE *__restrict); 113 int fputws (const wchar_t *__restrict, __FILE *__restrict); 115 int fputws_unlocked (const wchar_t *__restrict, __FILE *__restrict); 121 int fwprintf (__FILE *__restrict, const wchar_t *__restrict, ...); 122 int fwscanf (__FILE *__restrict, const wchar_t *__restrict, ...); 132 size_t mbrlen (const char *__restrict, size_t, mbstate_t *__restrict); 133 size_t mbrtowc (wchar_t *__restrict, const char *__restrict, size_t, 134 mbstate_t *__restrict); 137 size_t mbsnrtowcs (wchar_t *__restrict, const char **__restrict, [all …]
|
D | spawn.h | 55 int posix_spawn (pid_t * __restrict, const char * __restrict, 56 const posix_spawn_file_actions_t *, const posix_spawnattr_t * __restrict, 58 int posix_spawnp (pid_t * __restrict, const char * __restrict, 59 const posix_spawn_file_actions_t *, const posix_spawnattr_t * __restrict, 68 int posix_spawn_file_actions_addopen (posix_spawn_file_actions_t * __restrict, 69 int, const char * __restrict, int, mode_t); 73 int posix_spawn_file_actions_addchdir_np (posix_spawn_file_actions_t *__restrict 75 const char *__restrict); 76 int posix_spawn_file_actions_addfchdir_np (posix_spawn_file_actions_t *__restrict, 86 int posix_spawnattr_getflags (const posix_spawnattr_t * __restrict, [all …]
|
D | string.h | 81 void *memccpy (void *__restrict, const void *__restrict, int, size_t); 85 void *memcpy (void *__restrict, const void *__restrict, size_t); 99 char *stpcpy (char *__restrict, const char *__restrict); 100 char *stpncpy (char *__restrict, const char *__restrict, size_t); 105 char *strcat (char *__restrict, const char *__restrict); 115 char *strcpy (char *__restrict, const char *__restrict); 162 char *strncat (char *__restrict, const char *__restrict, size_t); 164 char *strncpy (char *__restrict, const char *__restrict, size_t); 184 char *strtok (char *__restrict, const char *__restrict); 186 char *strtok_r (char *__restrict, const char *__restrict, char **__restrict); [all …]
|
D | stdlib.h | 185 size_t mbstowcs (wchar_t *__restrict, const char *__restrict, size_t); 186 int mbtowc (wchar_t *__restrict, const char *__restrict, size_t); 249 char * realpath (const char *__restrict path, char *__restrict resolved_path); 277 double strtod (const char *__restrict __n, char **__restrict __end_PTR); 279 int strfromd(char *__restrict str, size_t n, 280 const char *__restrict format, double fp); 283 float strtof (const char *__restrict __n, char **__restrict __end_PTR); 286 strtold (const char *__restrict __n, char **__restrict __end_PTR); 289 int strfromf(char *__restrict str, size_t n, 290 const char *__restrict format, float fp); [all …]
|
D | time.h | 188 char *asctime_r (const struct tm *__restrict, 232 struct tm *gmtime_r (const time_t *__restrict, 233 struct tm *__restrict); 239 struct tm *localtime_r (const time_t *__restrict, 240 struct tm *__restrict); 247 size_t strftime (char *__restrict _s, 248 size_t _maxsize, const char *__restrict _fmt, 249 const struct tm *__restrict _t); 254 size_t strftime_l (char *__restrict _s, size_t _maxsize, 255 const char *__restrict _fmt, [all …]
|
D | regex.h | 98 int regcomp(regex_t *__restrict, const char *__restrict, int); 99 size_t regerror(int, const regex_t *__restrict, char *__restrict, size_t); 100 int regexec(const regex_t *__restrict, const char *__restrict,
|
D | iconv.h | 44 iconv (iconv_t, char **__restrict, size_t *__restrict, 45 char **__restrict, size_t *__restrict);
|
D | threads.h | 62 int cnd_timedwait(cnd_t *__restrict, mtx_t *__restrict __mtx, 63 const struct timespec *__restrict) 73 int mtx_timedlock(mtx_t *__restrict __mtx, 74 const struct timespec *__restrict)
|
/picolibc-latest/newlib/libc/include/ssp/ |
D | stdio.h | 38 int __sprintf_chk(char *__restrict, int, size_t, const char *__restrict, ...) 40 int __vsprintf_chk(char *__restrict, int, size_t, const char *__restrict, 43 int __snprintf_chk(char *__restrict, size_t, int, size_t, 44 const char *__restrict, ...) 46 int __vsnprintf_chk(char *__restrict, size_t, int, size_t, 47 const char *__restrict, __gnuc_va_list) 69 __ssp_decl(char *, fgets, (char *__restrict __buf, int __len, FILE *__fp)) 77 __ssp_decl(char *, fgets_unlocked, (char *__restrict __buf, int __len, FILE *__fp)) 85 __ssp_decl(size_t, fread, (void *__restrict __ptr, size_t __size, size_t __n, FILE *__restrict __fp… 92 __ssp_decl(size_t, fread_unlocked, (void *__restrict __ptr, size_t __size, size_t __n, FILE *__rest…
|
/picolibc-latest/newlib/libc/stdio/ |
D | stdio.h | 343 FILE * freopen (const char *__restrict, const char *__restrict, FILE *__restrict); 344 void setbuf (FILE *__restrict, char *__restrict); 345 int setvbuf (FILE *__restrict, char *__restrict, int, size_t); 346 int fprintf (FILE *__restrict, const char *__restrict, ...) 348 int fscanf (FILE *__restrict, const char *__restrict, ...) 350 int printf (const char *__restrict, ...) 352 int scanf (const char *__restrict, ...) 354 int sscanf (const char *__restrict, const char *__restrict, ...) 356 int vfprintf (FILE *__restrict, const char *__restrict, va_list) 360 int vsprintf (char *__restrict, const char *__restrict, va_list) [all …]
|
D | fprintf.c | 25 FILE *__restrict fp, in fprintf() 26 const char *__restrict fmt, ...) in fprintf() 39 fiprintf ( FILE *__restrict, const char *__restrict, ...)
|
/picolibc-latest/newlib/libc/machine/arm/ |
D | memcpy.c | 50 void *__aeabi_memcpy4 (void *__restrict dest, const void * __restrict source, size_t n) 53 void *__aeabi_memcpy8 (void * __restrict dest, const void * __restrict source, size_t n) 56 void *__aeabi_memcpy (void * __restrict dest, const void * __restrict source, size_t n)
|
/picolibc-latest/newlib/libc/ssp/ |
D | strcat_chk.c | 37 char *__strcat_chk(char * __restrict, const char * __restrict, size_t); 40 __strcat_chk(char * __restrict dst, const char * __restrict src, size_t slen) in __strcat_chk()
|
D | memcpy_chk.c | 39 void *__memcpy_chk(void * __restrict, const void * __restrict, size_t, size_t); 42 __memcpy_chk(void * __restrict dst, const void * __restrict src, size_t len, in __memcpy_chk()
|
D | strncpy_chk.c | 39 char *__strncpy_chk(char * __restrict, const char * __restrict, size_t, 43 __strncpy_chk(char * __restrict dst, const char * __restrict src, size_t len, in __strncpy_chk()
|
D | mempcpy_chk.c | 32 void *__mempcpy_chk(void * __restrict, const void * __restrict, size_t, size_t); 35 __mempcpy_chk(void * __restrict dst, const void * __restrict src, size_t len, in __mempcpy_chk()
|
D | stpncpy_chk.c | 40 char *__stpncpy_chk(char * __restrict, const char * __restrict, size_t, size_t); 43 __stpncpy_chk(char * __restrict dst, const char * __restrict src, size_t len, in __stpncpy_chk()
|
D | strcpy_chk.c | 39 char *__strcpy_chk(char * __restrict, const char * __restrict, size_t); 42 __strcpy_chk(char * __restrict dst, const char * __restrict src, size_t slen) in __strcpy_chk()
|
D | stpcpy_chk.c | 39 char *__stpcpy_chk(char * __restrict, const char * __restrict, size_t); 42 __stpcpy_chk(char * __restrict dst, const char * __restrict src, size_t slen) in __stpcpy_chk()
|
D | strncat_chk.c | 38 char *__strncat_chk(char * __restrict, const char * __restrict, size_t, 42 __strncat_chk(char * __restrict dst, const char * __restrict src, size_t len, in __strncat_chk()
|
/picolibc-latest/newlib/libc/stdlib/ |
D | strtoull.c | 126 _strtoull_l (const char *__restrict nptr, in _strtoull_l() 127 char **__restrict endptr, int base, locale_t loc) in _strtoull_l() 188 strtoull_l (const char *__restrict s, char **__restrict ptr, int base, in strtoull_l() 195 strtoull (const char *__restrict s, in strtoull() 196 char **__restrict ptr, in strtoull()
|
D | strtoll.c | 130 _strtoll_l (const char *__restrict nptr, in _strtoll_l() 131 char **__restrict endptr, int base, locale_t loc) in _strtoll_l() 213 strtoll_l (const char *__restrict s, char **__restrict ptr, int base, in strtoll_l() 220 strtoll (const char *__restrict s, in strtoll() 221 char **__restrict ptr, in strtoll()
|
D | strtold.c | 63 strtold_l (const char *__restrict s00, char **__restrict se, locale_t loc) in strtold_l() 72 strtold (const char *__restrict s00, char **__restrict se) in strtold()
|
D | strtol.c | 122 _strtol_l (const char *__restrict nptr, in _strtol_l() 123 char **__restrict endptr, int base, locale_t loc) in _strtol_l() 214 strtol_l (const char *__restrict s, char **__restrict ptr, int base, in strtol_l() 221 strtol (const char *__restrict s, in strtol() 222 char **__restrict ptr, in strtol()
|
D | wcsrtombs.c | 10 wcsrtombs (char *__restrict dst, in wcsrtombs() 11 const wchar_t **__restrict src, in wcsrtombs() 13 mbstate_t *__restrict ps) in wcsrtombs()
|