Home
last modified time | relevance | path

Searched refs:FF_CODE_PAGE (Results 1 – 5 of 5) sorted by relevance

/third_party/FatFs/source/
Dffunicode.c38 #if FF_CODE_PAGE == 932 || FF_CODE_PAGE == 0 /* Japanese */
1894 #if FF_CODE_PAGE == 936 || FF_CODE_PAGE == 0 /* Simplified Chinese */
7352 #if FF_CODE_PAGE == 949 || FF_CODE_PAGE == 0 /* Korean */
11624 #if FF_CODE_PAGE == 950 || FF_CODE_PAGE == 0 /* Traditional Chinese */
15008 #if FF_CODE_PAGE == 437 || FF_CODE_PAGE == 0
15020 #if FF_CODE_PAGE == 720 || FF_CODE_PAGE == 0
15032 #if FF_CODE_PAGE == 737 || FF_CODE_PAGE == 0
15044 #if FF_CODE_PAGE == 771 || FF_CODE_PAGE == 0
15056 #if FF_CODE_PAGE == 775 || FF_CODE_PAGE == 0
15068 #if FF_CODE_PAGE == 850 || FF_CODE_PAGE == 0
[all …]
Dffconf.h100 #define FF_CODE_PAGE 936 macro
102 #define FF_CODE_PAGE 437
D00history.txt294 Removed ASCII-only configuration, FF_CODE_PAGE = 1. Use FF_CODE_PAGE = 437 instead.
295 Added f_setcp(), run-time code page configuration. (FF_CODE_PAGE = 0)
Dff.c394 #if FF_CODE_PAGE == 0 /* Run-time code page configuration */
421 #elif FF_CODE_PAGE < 900 /* Static code page configuration (SBCS) */
422 #define CODEPAGE FF_CODE_PAGE
423 static const BYTE ExCvt[] = MKCVTBL(TBL_CT, FF_CODE_PAGE);
426 #define CODEPAGE FF_CODE_PAGE
427 static const BYTE DbcTbl[] = MKCVTBL(TBL_DC, FF_CODE_PAGE);
537 #if FF_CODE_PAGE == 0 /* Variable code page */ in dbc_1st()
542 #elif FF_CODE_PAGE >= 900 /* DBCS fixed code page */ in dbc_1st()
557 #if FF_CODE_PAGE == 0 /* Variable code page */ in dbc_2nd()
563 #elif FF_CODE_PAGE >= 900 /* DBCS fixed code page */ in dbc_2nd()
[all …]
/third_party/FatFs/documents/
Dupdates.txt23 Removed ASCII-only configuration, FF_CODE_PAGE = 1. Use FF_CODE_PAGE = 437 instead.
24 Added f_setcp(), run-time code page configuration. (FF_CODE_PAGE = 0)