Lines Matching refs:low
66 @@ -828,6 +830,8 @@ ctype<wchar_t>::do_toupper(char_type* low, const char_type* high) const
68 *low = isascii(*low) ? ctype<char>::__classic_upper_table()[*low]
69 : *low;
71 + *low = isascii(*low) ? _toupper_tab_[*low + 1] : *low;
73 *low = (isascii(*low) && islower_l(*low, __cloc())) ? (*low-L'a'+L'A') : *low;
84 @@ -855,6 +861,8 @@ ctype<wchar_t>::do_tolower(char_type* low, const char_type* high) const
86 *low = isascii(*low) ? ctype<char>::__classic_lower_table()[*low]
87 : *low;
89 + *low = isascii(*low) ? _tolower_tab_[*low + 1] : *low;
91 *low = (isascii(*low) && isupper_l(*low, __cloc())) ? *low-L'A'+L'a' : *low;
102 @@ -941,6 +951,8 @@ ctype<char>::do_toupper(char_type* low, const char_type* high) const
104 *low = isascii(*low) ?
105 static_cast<char>(__classic_upper_table()[static_cast<size_t>(*low)]) : *low;
107 + *low = isascii(*low) ? _toupper_tab_[*low + 1] : *low;
109 *low = (isascii(*low) && islower_l(*low, __cloc())) ? *low-'a'+'A' : *low;
120 @@ -973,6 +987,8 @@ ctype<char>::do_tolower(char_type* low, const char_type* high) const
121 *low = static_cast<char>(__classic_lower_table()[static_cast<unsigned char>(*low)]);
123 …*low = isascii(*low) ? static_cast<char>(__classic_lower_table()[static_cast<size_t>(*low)]) : *lo…
125 + *low = isascii(*low) ? _tolower_tab_[*low + 1] : *low;
127 *low = (isascii(*low) && isupper_l(*low, __cloc())) ? *low-'A'+'a' : *low;