Lines Matching refs:uc
101 static inline wchar_t UniToupper(wchar_t uc)
105 if (uc < sizeof(NlsUniUpperTable)) { /* Latin characters */
106 return uc + NlsUniUpperTable[uc]; /* Use base tables */
110 if (uc < rp->start) /* Before start of range */
111 return uc; /* Uppercase = input */
112 if (uc <= rp->end) /* In range */
113 return uc + rp->table[uc - rp->start];
117 return uc; /* Past last range */