Home
last modified time | relevance | path

Searched refs:__classic_lower_table (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/src/
H A Dlocale.cpp759 return isascii(c) ? ctype<char>::__classic_lower_table()[c] : c; in do_tolower()
770 *low = isascii(*low) ? ctype<char>::__classic_lower_table()[*low] : *low; in do_tolower()
847 return static_cast<char>(__classic_lower_table()[static_cast<unsigned char>(c)]); in do_tolower()
849 return isascii(c) ? static_cast<char>(__classic_lower_table()[static_cast<size_t>(c)]) : c; in do_tolower()
860 *low = static_cast<char>(__classic_lower_table()[static_cast<unsigned char>(*low)]); in do_tolower()
862 …*low = isascii(*low) ? static_cast<char>(__classic_lower_table()[static_cast<size_t>(*low)]) : *lo… in do_tolower()
1013 const int* ctype<char>::__classic_lower_table() noexcept { return _LIBCPP_GET_C_LOCALE->__ctype_tol… in __classic_lower_table() function in ctype
1017 const short* ctype<char>::__classic_lower_table() noexcept { return _C_tolower_tab_ + 1; } in __classic_lower_table() function in ctype
1022 const int* ctype<char>::__classic_lower_table() noexcept { return *__ctype_tolower_loc(); } in __classic_lower_table() function in ctype
1026 const unsigned short* ctype<char>::__classic_lower_table() _NOEXCEPT { in __classic_lower_table() function in ctype
/freebsd/contrib/llvm-project/libcxx/include/
H A D__locale589 static const int* __classic_lower_table() _NOEXCEPT;
593 static const short* __classic_lower_table() _NOEXCEPT;
597 static const unsigned short* __classic_lower_table() _NOEXCEPT;