/picolibc-latest/newlib/libc/include/ |
D | wctype.h | 53 int iswalnum_l (wint_t, locale_t); 54 int iswalpha_l (wint_t, locale_t); 55 int iswblank_l (wint_t, locale_t); 56 int iswcntrl_l (wint_t, locale_t); 57 int iswctype_l (wint_t, wctype_t, locale_t); 58 int iswdigit_l (wint_t, locale_t); 59 int iswgraph_l (wint_t, locale_t); 60 int iswlower_l (wint_t, locale_t); 61 int iswprint_l (wint_t, locale_t); 62 int iswpunct_l (wint_t, locale_t); [all …]
|
D | ctype.h | 97 int isalnum_l (int c, locale_t l); 98 int isalpha_l (int c, locale_t l); 99 int isblank_l (int c, locale_t l); 100 int iscntrl_l (int c, locale_t l); 101 int isdigit_l (int c, locale_t l); 102 int isgraph_l (int c, locale_t l); 103 int islower_l (int c, locale_t l); 104 int isprint_l (int c, locale_t l); 105 int ispunct_l (int c, locale_t l); 106 int isspace_l (int c, locale_t l); [all …]
|
D | locale.h | 107 locale_t newlocale (int, const char *, locale_t); 108 void freelocale (locale_t); 109 locale_t duplocale (locale_t); 110 locale_t uselocale (locale_t);
|
D | wchar.h | 181 int wcscasecmp_l (const wchar_t *, const wchar_t *, locale_t); 188 int wcscoll_l (const wchar_t *, const wchar_t *, locale_t); 201 const struct tm *__restrict, locale_t); 210 int wcsncasecmp_l (const wchar_t *, const wchar_t *, size_t, locale_t); 230 double wcstod_l (const wchar_t *, wchar_t **, locale_t); 236 float wcstof_l (const wchar_t *, wchar_t **, locale_t); 242 long wcstol_l (const wchar_t *__restrict, wchar_t **__restrict, int, locale_t); 250 wcstold_l (const wchar_t *, wchar_t **, locale_t); 259 locale_t); 266 locale_t); [all …]
|
D | strings.h | 80 int strcasecmp_l (const char *, const char *, locale_t); 81 int strncasecmp_l (const char *, const char *, size_t, locale_t);
|
D | stdlib.h | 322 double strtod_l (const char *__restrict, char **__restrict, locale_t); 323 float strtof_l (const char *__restrict, char **__restrict, locale_t); 327 locale_t); 329 long strtol_l (const char *__restrict, char **__restrict, int, locale_t); 332 locale_t __loc); 334 strtoll_l (const char *__restrict, char **__restrict, int, locale_t); 337 locale_t __loc);
|
D | string.h | 113 int strcoll_l (const char *, const char *, locale_t); 136 char *strerror_l (int, locale_t); 196 size_t strxfrm_l (char *__restrict, const char *__restrict, size_t, locale_t);
|
D | time.h | 256 const struct tm *__restrict _t, locale_t _l); 266 struct tm *__restrict, locale_t);
|
D | inttypes.h | 334 intmax_t strtoimax_l(const char *__restrict, char **_restrict, int, locale_t); 335 uintmax_t strtoumax_l(const char *__restrict, char **_restrict, int, locale_t); 336 intmax_t wcstoimax_l(const _wchar_t *__restrict, _wchar_t **_restrict, int, locale_t); 337 uintmax_t wcstoumax_l(const _wchar_t *__restrict, _wchar_t **_restrict, int, locale_t);
|
/picolibc-latest/newlib/libc/tinystdio/ |
D | strtod_l.c | 41 locale_t loc) in strtod_l() 53 extern long double strtold_l(const char *, char **, locale_t loc) __attribute__ ((__alias__ ("strto… 56 strtold_l (const char * nptr, char ** endptr, locale_t loc) in strtold_l()
|
D | strtof_l.c | 41 locale_t loc) in strtof_l()
|
D | strtol_l.c | 42 locale_t loc) in strtol_l()
|
D | strtold_l.c | 43 locale_t loc) in strtold_l()
|
D | strtoll_l.c | 42 locale_t loc) in strtoll_l()
|
D | strtoul_l.c | 42 locale_t loc) in strtoul_l()
|
D | strtoull_l.c | 42 locale_t loc) in strtoull_l()
|
/picolibc-latest/newlib/libc/stdlib/ |
D | strtoull.c | 127 char **__restrict endptr, int base, locale_t loc) in _strtoull_l() 189 locale_t loc) in strtoull_l()
|
D | strtoll.c | 131 char **__restrict endptr, int base, locale_t loc) in _strtoll_l() 214 locale_t loc) in strtoll_l()
|
D | strtol.c | 123 char **__restrict endptr, int base, locale_t loc) in _strtol_l() 215 locale_t loc) in strtol_l()
|
D | strtorx.c | 97 _strtorx_l(s, sp, rounding, L, loc) const char *s; char **sp; int rounding; void *L; locale_t loc; in _strtorx_l() 100 locale_t loc)
|
D | wcstod.c | 148 locale_t loc) in wcstod_l() 220 locale_t loc) in wcstof_l()
|
D | strtold.c | 63 strtold_l (const char *__restrict s00, char **__restrict se, locale_t loc) in strtold_l()
|
D | mprec.h | 380 int gethex (const char **sp, const struct FPI *fpi, Long *exp, _Bigint **bp, int sign, locale_t lo… 385 char **__restrict se, locale_t loc); 388 void *, locale_t); 391 locale_t);
|
/picolibc-latest/newlib/libc/include/sys/ |
D | _locale.h | 8 typedef struct __locale_t *locale_t; typedef
|
/picolibc-latest/newlib/libc/string/ |
D | strxfrm_l.c | 57 locale_t locale) in strxfrm_l()
|