Lines Matching refs:__c
34 wint_t btowc_l(int __c, locale_t __l) { in btowc_l() argument
36 return __l->lc_ctype->cmapp->core.user_api->btowc(__l->lc_ctype->cmapp, __c); in btowc_l()
39 int wctob_l(wint_t __c, locale_t __l) { in wctob_l() argument
41 return __l->lc_ctype->cmapp->core.user_api->wctob(__l->lc_ctype->cmapp, __c); in wctob_l()
113 int is##ctype##_l(int __c, locale_t __l) { \
114 if ((__c < 0) || (__c > 255)) return 0;\
116 return __l->lc_ctype->mask[__c] & m;\
118 int isw##ctype##_l(wchar_t __c, locale_t __l) { \
120 return __l->lc_ctype->core.user_api->iswctype(__l->lc_ctype, __c, m);\
136 int iswctype_l(wint_t __c, wctype_t __m, locale_t __l) { in LOCALE_ISCTYPE()
138 return __l->lc_ctype->core.user_api->iswctype(__l->lc_ctype, __c, __m);\ in LOCALE_ISCTYPE()
141 int toupper_l(int __c, locale_t __l) { in toupper_l() argument
143 if ((__c < 0) || (__c > __l->lc_ctype->max_upper)) return __c; in toupper_l()
144 return __l->lc_ctype->upper[__c]; in toupper_l()
146 int tolower_l(int __c, locale_t __l) { in tolower_l() argument
148 if ((__c < 0) || (__c > __l->lc_ctype->max_lower)) return __c; in tolower_l()
149 return __l->lc_ctype->lower[__c]; in tolower_l()
151 wint_t towupper_l(wint_t __c, locale_t __l) { in towupper_l() argument
153 return __l->lc_ctype->core.user_api->towupper(__l->lc_ctype, __c); in towupper_l()
155 wint_t towlower_l(wint_t __c, locale_t __l) { in towlower_l() argument
157 return __l->lc_ctype->core.user_api->towlower(__l->lc_ctype, __c); in towlower_l()