Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/libcxx/src/
H A Dlocale.cpp739 return isascii(c) ? ctype<char>::__classic_upper_table()[c] : c; in do_toupper()
750 *low = isascii(*low) ? ctype<char>::__classic_upper_table()[*low] : *low; in do_toupper()
823 return static_cast<char>(__classic_upper_table()[static_cast<unsigned char>(c)]); in do_toupper()
825 return isascii(c) ? static_cast<char>(__classic_upper_table()[static_cast<unsigned char>(c)]) : c; in do_toupper()
836 *low = static_cast<char>(__classic_upper_table()[static_cast<unsigned char>(*low)]); in do_toupper()
838 …*low = isascii(*low) ? static_cast<char>(__classic_upper_table()[static_cast<size_t>(*low)]) : *lo… in do_toupper()
1017 const int* ctype<char>::__classic_upper_table() noexcept { return _LIBCPP_GET_C_LOCALE->__ctype_tou… in __classic_upper_table() function in ctype
1021 const short* ctype<char>::__classic_upper_table() noexcept { return _C_toupper_tab_ + 1; } in __classic_upper_table() function in ctype
1026 const int* ctype<char>::__classic_upper_table() noexcept { return *__ctype_toupper_loc(); } in __classic_upper_table() function in ctype
1035 const unsigned short* ctype<char>::__classic_upper_table() _NOEXCEPT { in __classic_upper_table() function in ctype
/freebsd-14.2/contrib/llvm-project/libcxx/include/
H A D__locale606 static const int* __classic_upper_table() _NOEXCEPT;
610 static const short* __classic_upper_table() _NOEXCEPT;
614 static const unsigned short* __classic_upper_table() _NOEXCEPT;