Lines Matching refs:c
15227 WCHAR c = 0; in ff_uni2oem() local
15232 c = (WCHAR)uni; in ff_uni2oem()
15236 for (c = 0; c < 0x80 && uni != p[c]; c++) ; in ff_uni2oem()
15237 c = (c + 0x80) & 0xFF; in ff_uni2oem()
15241 return c; in ff_uni2oem()
15249 WCHAR c = 0; in ff_oem2uni() local
15254 c = oem; in ff_oem2uni()
15258 if (oem < 0x100) c = p[oem - 0x80]; in ff_oem2uni()
15262 return c; in ff_oem2uni()
15281 WCHAR c = 0, uc; in ff_uni2oem() local
15286 c = (WCHAR)uni; in ff_uni2oem()
15303 if (n != 0) c = p[i * 2 + 1]; in ff_uni2oem()
15307 return c; in ff_uni2oem()
15317 WCHAR c = 0; in ff_oem2uni() local
15322 c = oem; in ff_oem2uni()
15338 if (n != 0) c = p[i * 2 + 1]; in ff_oem2uni()
15342 return c; in ff_oem2uni()
15364 WCHAR c = 0, uc; in ff_uni2oem() local
15369 c = (WCHAR)uni; in ff_uni2oem()
15379 for (c = 0; c < 0x80 && uc != p[c]; c++) ; /* Find OEM code in the table */ in ff_uni2oem()
15380 c = (c + 0x80) & 0xFF; in ff_uni2oem()
15400 if (n != 0) c = p[i * 2 + 1]; in ff_uni2oem()
15406 return c; in ff_uni2oem()
15416 WCHAR c = 0; in ff_oem2uni() local
15421 c = oem; in ff_oem2uni()
15429 if (oem < 0x100) c = p[oem - 0x80]; in ff_oem2uni()
15449 if (n != 0) c = p[i * 2 + 1]; in ff_oem2uni()
15454 return c; in ff_oem2uni()