Lines Matching refs:uc
15228 const WCHAR *p = CVTBL(uc, FF_CODE_PAGE); in ff_uni2oem()
15250 const WCHAR *p = CVTBL(uc, FF_CODE_PAGE); in ff_oem2uni()
15281 WCHAR c = 0, uc; in ff_uni2oem() local
15290 uc = (WCHAR)uni; in ff_uni2oem()
15296 if (uc == p[i * 2]) break; in ff_uni2oem()
15297 if (uc > p[i * 2]) { in ff_uni2oem()
15364 WCHAR c = 0, uc; in ff_uni2oem() local
15373 uc = (WCHAR)uni; in ff_uni2oem()
15379 for (c = 0; c < 0x80 && uc != p[c]; c++) ; /* Find OEM code in the table */ in ff_uni2oem()
15393 if (uc == p[i * 2]) break; in ff_uni2oem()
15394 if (uc > p[i * 2]) { in ff_uni2oem()
15469 WORD uc, bc, nc, cmd; in ff_wtoupper() local
15564 uc = (WORD)uni; in ff_wtoupper()
15565 p = uc < 0x1000 ? cvt1 : cvt2; in ff_wtoupper()
15568 if (bc == 0 || uc < bc) break; /* Not matched? */ in ff_wtoupper()
15570 if (uc < bc + nc) { /* In the block? */ in ff_wtoupper()
15572 case 0: uc = p[uc - bc]; break; /* Table conversion */ in ff_wtoupper()
15573 case 1: uc -= (uc - bc) & 1; break; /* Case pairs */ in ff_wtoupper()
15574 case 2: uc -= 16; break; /* Shift -16 */ in ff_wtoupper()
15575 case 3: uc -= 32; break; /* Shift -32 */ in ff_wtoupper()
15576 case 4: uc -= 48; break; /* Shift -48 */ in ff_wtoupper()
15577 case 5: uc -= 26; break; /* Shift -26 */ in ff_wtoupper()
15578 case 6: uc += 8; break; /* Shift +8 */ in ff_wtoupper()
15579 case 7: uc -= 80; break; /* Shift -80 */ in ff_wtoupper()
15580 case 8: uc -= 0x1C60; break; /* Shift -0x1C60 */ in ff_wtoupper()
15586 uni = uc; in ff_wtoupper()