Lines Matching refs:p

15228 	const WCHAR *p = CVTBL(uc, FF_CODE_PAGE);  in ff_uni2oem()  local
15236 for (c = 0; c < 0x80 && uni != p[c]; c++) ; in ff_uni2oem()
15250 const WCHAR *p = CVTBL(uc, FF_CODE_PAGE); in ff_oem2uni() local
15258 if (oem < 0x100) c = p[oem - 0x80]; in ff_oem2uni()
15280 const WCHAR *p; in ff_uni2oem() local
15291 p = CVTBL(uni2oem, FF_CODE_PAGE); in ff_uni2oem()
15296 if (uc == p[i * 2]) break; in ff_uni2oem()
15297 if (uc > p[i * 2]) { in ff_uni2oem()
15303 if (n != 0) c = p[i * 2 + 1]; in ff_uni2oem()
15316 const WCHAR *p; in ff_oem2uni() local
15326 p = CVTBL(oem2uni, FF_CODE_PAGE); in ff_oem2uni()
15331 if (oem == p[i * 2]) break; in ff_oem2uni()
15332 if (oem > p[i * 2]) { in ff_oem2uni()
15338 if (n != 0) c = p[i * 2 + 1]; in ff_oem2uni()
15363 const WCHAR *p; in ff_uni2oem() local
15374 p = 0; in ff_uni2oem()
15377 p = cp_table[i]; in ff_uni2oem()
15378 if (p) { /* Is it valid code page ? */ in ff_uni2oem()
15379 for (c = 0; c < 0x80 && uc != p[c]; c++) ; /* Find OEM code in the table */ in ff_uni2oem()
15384 case 932 : p = uni2oem932; hi = sizeof uni2oem932 / 4 - 1; break; in ff_uni2oem()
15385 case 936 : p = uni2oem936; hi = sizeof uni2oem936 / 4 - 1; break; in ff_uni2oem()
15386 case 949 : p = uni2oem949; hi = sizeof uni2oem949 / 4 - 1; break; in ff_uni2oem()
15387 case 950 : p = uni2oem950; hi = sizeof uni2oem950 / 4 - 1; break; in ff_uni2oem()
15389 if (p) { /* Is it valid code page? */ in ff_uni2oem()
15393 if (uc == p[i * 2]) break; in ff_uni2oem()
15394 if (uc > p[i * 2]) { in ff_uni2oem()
15400 if (n != 0) c = p[i * 2 + 1]; in ff_uni2oem()
15415 const WCHAR *p; in ff_oem2uni() local
15424 p = 0; in ff_oem2uni()
15427 p = cp_table[i]; in ff_oem2uni()
15428 if (p) { /* Is it a valid CP ? */ in ff_oem2uni()
15429 if (oem < 0x100) c = p[oem - 0x80]; in ff_oem2uni()
15433 case 932 : p = oem2uni932; hi = sizeof oem2uni932 / 4 - 1; break; in ff_oem2uni()
15434 case 936 : p = oem2uni936; hi = sizeof oem2uni936 / 4 - 1; break; in ff_oem2uni()
15435 case 949 : p = oem2uni949; hi = sizeof oem2uni949 / 4 - 1; break; in ff_oem2uni()
15436 case 950 : p = oem2uni950; hi = sizeof oem2uni950 / 4 - 1; break; in ff_oem2uni()
15438 if (p) { in ff_oem2uni()
15442 if (oem == p[i * 2]) break; in ff_oem2uni()
15443 if (oem > p[i * 2]) { in ff_oem2uni()
15449 if (n != 0) c = p[i * 2 + 1]; in ff_oem2uni()
15468 const WORD *p; in ff_wtoupper() local
15565 p = uc < 0x1000 ? cvt1 : cvt2; in ff_wtoupper()
15567 bc = *p++; /* Get the block base */ in ff_wtoupper()
15569 nc = *p++; cmd = nc >> 8; nc &= 0xFF; /* Get processing command and block size */ in ff_wtoupper()
15572 case 0: uc = p[uc - bc]; break; /* Table conversion */ in ff_wtoupper()
15584 if (cmd == 0) p += nc; /* Skip table if needed */ in ff_wtoupper()