Lines Matching refs:uc
15232 const WCHAR *p = CVTBL(uc, FF_CODE_PAGE); in ff_uni2oem()
15254 const WCHAR *p = CVTBL(uc, FF_CODE_PAGE); in ff_oem2uni()
15285 WCHAR c = 0, uc; in ff_uni2oem() local
15294 uc = (WCHAR)uni; in ff_uni2oem()
15300 if (uc == p[i * 2]) break; in ff_uni2oem()
15301 if (uc > p[i * 2]) { in ff_uni2oem()
15368 WCHAR c = 0, uc; in ff_uni2oem() local
15377 uc = (WCHAR)uni; in ff_uni2oem()
15383 for (c = 0; c < 0x80 && uc != p[c]; c++) ; /* Find OEM code in the table */ in ff_uni2oem()
15397 if (uc == p[i * 2]) break; in ff_uni2oem()
15398 if (uc > p[i * 2]) { in ff_uni2oem()
15473 WORD uc, bc, nc, cmd; in ff_wtoupper() local
15568 uc = (WORD)uni; in ff_wtoupper()
15569 p = uc < 0x1000 ? cvt1 : cvt2; in ff_wtoupper()
15572 if (bc == 0 || uc < bc) break; /* Not matched? */ in ff_wtoupper()
15574 if (uc < bc + nc) { /* In the block? */ in ff_wtoupper()
15576 case 0: uc = p[uc - bc]; break; /* Table conversion */ in ff_wtoupper()
15577 case 1: uc -= (uc - bc) & 1; break; /* Case pairs */ in ff_wtoupper()
15578 case 2: uc -= 16; break; /* Shift -16 */ in ff_wtoupper()
15579 case 3: uc -= 32; break; /* Shift -32 */ in ff_wtoupper()
15580 case 4: uc -= 48; break; /* Shift -48 */ in ff_wtoupper()
15581 case 5: uc -= 26; break; /* Shift -26 */ in ff_wtoupper()
15582 case 6: uc += 8; break; /* Shift +8 */ in ff_wtoupper()
15583 case 7: uc -= 80; break; /* Shift -80 */ in ff_wtoupper()
15584 case 8: uc -= 0x1C60; break; /* Shift -0x1C60 */ in ff_wtoupper()
15590 uni = uc; in ff_wtoupper()