Searched refs:__locale_t (Results 1 – 25 of 58) sorted by relevance
123
/picolibc-latest/newlib/libc/locale/ |
D | setlocale.h | 42 extern struct __locale_t __global_locale; 174 struct __locale_t struct 194 extern char *__loadlocale (struct __locale_t *, int, char *); argument 198 extern struct lconv *__localeconv_l (struct __locale_t *locale); 201 size_t, size_t, mbstate_t *, struct __locale_t *); 205 extern NEWLIB_THREAD_LOCAL_LOCALE struct __locale_t *_locale; 212 _ELIDABLE_INLINE struct __locale_t * 224 _ELIDABLE_INLINE struct __locale_t * 230 extern const struct __locale_t __C_locale; in __get_C_locale() 231 return (struct __locale_t *) &__C_locale; in __get_C_locale() [all …]
|
D | uselocale.c | 87 struct __locale_t * 88 uselocale (struct __locale_t *newloc) in uselocale() 90 struct __locale_t *current_locale; in uselocale()
|
D | duplocale.c | 74 struct __locale_t * 75 duplocale (struct __locale_t *locobj) in duplocale() 77 struct __locale_t tmp_locale, *new_locale; in duplocale() 109 new_locale = (struct __locale_t *) calloc (1, sizeof *new_locale); in duplocale()
|
D | newlocale.c | 108 struct __locale_t * 110 struct __locale_t *base) in newlocale() 134 struct __locale_t tmp_locale, *new_locale; in newlocale() 203 new_locale = (struct __locale_t *) calloc (1, sizeof *new_locale); in newlocale()
|
D | nl_langinfo.c | 40 const struct lc_ctype_T * (*ctype)(struct __locale_t *); 41 const struct lc_time_T * (*time)(struct __locale_t *); 42 const struct lc_numeric_T * (*numeric)(struct __locale_t *); 43 const struct lc_monetary_T * (*monetary)(struct __locale_t *); 44 const struct lc_messages_T * (*messages)(struct __locale_t *); 45 void * (*base)(struct __locale_t *); 163 char *nl_langinfo_l (nl_item item, struct __locale_t *locale) in nl_langinfo_l()
|
/picolibc-latest/newlib/libc/include/sys/ |
D | _locale.h | 7 struct __locale_t; 8 typedef struct __locale_t *locale_t;
|
/picolibc-latest/newlib/libc/include/ |
D | locale.h | 105 #define LC_GLOBAL_LOCALE ((struct __locale_t *) -1) 115 const char *getlocalename_l (int, struct __locale_t *); 119 const char *getlocalename_l (int, struct __locale_t *);
|
/picolibc-latest/newlib/libc/ctype/ |
D | local.h | 65 wint_t _jp2uc_l (wint_t, struct __locale_t *); 66 wint_t _uc2jp_l (wint_t, struct __locale_t *);
|
D | ctype_.h | 7 __set_ctype (struct __locale_t *loc, const char *charset);
|
D | isascii_l.c | 10 isascii_l (int c, struct __locale_t *locale) in isascii_l()
|
D | toascii_l.c | 11 toascii_l (int c, struct __locale_t *locale) in toascii_l()
|
D | wctrans_l.c | 9 wctrans_l (const char *c, struct __locale_t *locale) in wctrans_l()
|
D | wctype_l.c | 9 wctype_l (const char *c, struct __locale_t *locale) in wctype_l()
|
D | iswdigit_l.c | 9 iswdigit_l (wint_t c, struct __locale_t *locale) in iswdigit_l()
|
D | isdigit_l.c | 10 isdigit_l (int c, struct __locale_t *locale) in isdigit_l()
|
D | ispunct_l.c | 10 ispunct_l (int c, struct __locale_t *locale) in ispunct_l()
|
D | isspace_l.c | 10 isspace_l (int c, struct __locale_t *locale) in isspace_l()
|
D | towlower_l.c | 11 towlower_l (wint_t c, struct __locale_t *locale) in towlower_l()
|
D | towupper_l.c | 11 towupper_l (wint_t c, struct __locale_t *locale) in towupper_l()
|
D | iscntrl_l.c | 10 iscntrl_l (int c, struct __locale_t *locale) in iscntrl_l()
|
D | isalpha_l.c | 10 isalpha_l (int c, struct __locale_t *locale) in isalpha_l()
|
D | isblank_l.c | 10 isblank_l (int c, struct __locale_t *locale) in isblank_l()
|
D | isxdigit_l.c | 11 isxdigit_l (int c, struct __locale_t *locale) in isxdigit_l()
|
/picolibc-latest/newlib/libc/string/ |
D | strcoll_l.c | 47 strcoll_l (const char *a, const char *b, struct __locale_t *locale) in strcoll_l()
|
D | wcscoll_l.c | 43 wcscoll_l (const wchar_t *a, const wchar_t *b, struct __locale_t *locale) in wcscoll_l()
|
123