Lines Matching refs:ch
32 static inline WCHAR to_unicode_digit( WCHAR ch )
35 return ch + wine_digitmap[wine_digitmap[ch >> 8] + (ch & 0xff)];
38 static inline WCHAR to_unicode_native( WCHAR ch )
41 return ch + wine_compatmap[wine_compatmap[ch >> 8] + (ch & 0xff)];
168 WCHAR ch = *src;
172 expand = get_ligature(ch);
183 ch = expand[2];
186 ch = expand[1];
199 ch = to_unicode_digit(ch);
201 ch = to_unicode_native(ch);
203 *dst++ = ch;