Lines Matching refs:__c

72 __maskrune_l(__ct_rune_t __c, unsigned long __f, locale_t __loc);
74 __istype_l(__ct_rune_t __c, unsigned long __f, locale_t __loc);
77 __maskrune_l(__ct_rune_t __c, unsigned long __f, locale_t __loc)
81 return ((__c < 0 || __c >= _CACHED_RUNES) ? ___runetype_l(__c, __loc) :
82 runes->__runetype[__c]) & __f;
86 __istype_l(__ct_rune_t __c, unsigned long __f, locale_t __loc)
88 return (!!__maskrune_l(__c, __f, __loc));
93 _XLOCALE_INLINE int isw##fname##_l(int __c, locale_t __l)\
94 { return __istype_l(__c, cat, __l); }
97 __sbmaskrune_l(__ct_rune_t __c, unsigned long __f, locale_t __loc);
99 __sbistype_l(__ct_rune_t __c, unsigned long __f, locale_t __loc);
102 __sbmaskrune_l(__ct_rune_t __c, unsigned long __f, locale_t __loc)
106 return (__c < 0 || __c >= __limit) ? 0 :
107 runes->__runetype[__c] & __f;
111 __sbistype_l(__ct_rune_t __c, unsigned long __f, locale_t __loc)
113 return (!!__sbmaskrune_l(__c, __f, __loc));
118 _XLOCALE_INLINE int is##__fname##_l(int __c, locale_t __l)\
119 { return __sbistype_l(__c, __cat, __l); }
147 _XLOCALE_INLINE int towlower_l(int __c, locale_t __l)
151 return (__c < 0 || __c >= _CACHED_RUNES) ? ___tolower_l(__c, __l) :
152 __runes->__maplower[__c];
154 _XLOCALE_INLINE int towupper_l(int __c, locale_t __l)
158 return (__c < 0 || __c >= _CACHED_RUNES) ? ___toupper_l(__c, __l) :
159 __runes->__mapupper[__c];
184 _XLOCALE_INLINE int digittoint_l(int __c, locale_t __l)
185 { return __sbmaskrune_l((__c), 0xFF, __l); }
187 _XLOCALE_INLINE int tolower_l(int __c, locale_t __l)
191 return (__c < 0 || __c >= __limit) ? __c :
192 __runes->__maplower[__c];
194 _XLOCALE_INLINE int toupper_l(int __c, locale_t __l)
198 return (__c < 0 || __c >= __limit) ? __c :
199 __runes->__mapupper[__c];