Searched defs:toASCIIUpper (Results 1 – 1 of 1) sorted by relevance
140 … inline char toASCIIUpper(char c) { return static_cast<char>(c & ~((c >= 'a' && c <= 'z') << 5)); } in toASCIIUpper() function141 …inline unsigned short toASCIIUpper(unsigned short c) { return static_cast<unsigned short>(c & ~((c… in toASCIIUpper() function143 …inline wchar_t toASCIIUpper(wchar_t c) { return static_cast<wchar_t>(c & ~((c >= 'a' && c <= 'z') … in toASCIIUpper() function145 inline int toASCIIUpper(int c) { return static_cast<int>(c & ~((c >= 'a' && c <= 'z') << 5)); } in toASCIIUpper() function146 …inline unsigned toASCIIUpper(unsigned c) { return static_cast<unsigned>(c & ~((c >= 'a' && c <= 'z… in toASCIIUpper() function