Searched refs:isupper_l (Results 1 – 5 of 5) sorted by relevance
76 int isupper_l(int, locale_t);
62 inline _LIBCPP_INLINE_VISIBILITY int isupper_l(int c, locale_t) { in isupper_l() function
79 int isupper_l(int c, locale_t locale) in isupper_l() function
235 isupper_l(int c, _locale_t loc) in isupper_l() function
875 return (isascii(c) && isupper_l(c, _LIBCPP_GET_C_LOCALE)) ? c-L'A'+'a' : c; in do_tolower()890 *low = (isascii(*low) && isupper_l(*low, _LIBCPP_GET_C_LOCALE)) ? *low-L'A'+L'a' : *low; in do_tolower()993 return (isascii(c) && isupper_l(c, _LIBCPP_GET_C_LOCALE)) ? c-'A'+'a' : c; in do_tolower()1008 *low = (isascii(*low) && isupper_l(*low, _LIBCPP_GET_C_LOCALE)) ? *low-'A'+'a' : *low; in do_tolower()