Home
last modified time | relevance | path

Searched refs:cp (Results 1 – 3 of 3) sorted by relevance

/fatfs-latest/option/
Dffunicode.c31 #define CVTBL(tbl, cp) MERGE2(tbl, cp) argument
15224 WORD cp /* Code page for the conversion */ in ff_uni2oem() argument
15235 if (uni < 0x10000 && cp == FF_CODE_PAGE) { /* Is it in BMP and valid code page? */ in ff_uni2oem()
15246 WORD cp /* Code page for the conversion */ in ff_oem2uni() argument
15257 if (cp == FF_CODE_PAGE) { /* Is it a valid code page? */ in ff_oem2uni()
15277 WORD cp /* Code page for the conversion */ in ff_uni2oem() argument
15289 if (uni < 0x10000 && cp == FF_CODE_PAGE) { /* Is it in BMP and valid code page? */ in ff_uni2oem()
15313 WORD cp /* Code page for the conversion */ in ff_oem2uni() argument
15325 if (cp == FF_CODE_PAGE) { /* Is it valid code page? */ in ff_oem2uni()
15360 WORD cp /* Code page for the conversion */ in ff_uni2oem() argument
[all …]
/fatfs-latest/include/
Dff.h334 FRESULT f_setcp (WORD cp); /* Set current code page */
336 int f_puts (const TCHAR* str, FIL* cp); /* Put a string to the file */
367 WCHAR ff_oem2uni (WCHAR oem, WORD cp); /* OEM code to Unicode conversion */
368 WCHAR ff_uni2oem (DWORD uni, WORD cp); /* Unicode to OEM code conversion */
/fatfs-latest/
Dff.c444 #define MKCVTBL(hd, cp) MERGE_2STR(hd, cp) argument
7084 WORD cp /* Value to be set as active code page */ argument
7092 for (i = 0; validcp[i] != 0 && validcp[i] != cp; i++) ; /* Find the code page */
7093 if (validcp[i] != cp) return FR_INVALID_PARAMETER; /* Not found? */
7095 CodePage = cp;
7096 if (cp >= 900) { /* DBCS */