Home
last modified time | relevance | path

Searched refs:FF_CODE_PAGE (Results 1 – 4 of 4) 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.h92 #define FF_CODE_PAGE 936 macro
94 #define FF_CODE_PAGE 437
Dff.c397 #if FF_CODE_PAGE == 0 /* Run-time code page configuration */
425 #elif FF_CODE_PAGE < 900 /* Static code page configuration (SBCS) */
426 #define CODEPAGE FF_CODE_PAGE
427 static const BYTE ExCvt[] = MKCVTBL(TBL_CT, FF_CODE_PAGE);
430 #define CODEPAGE FF_CODE_PAGE
431 static const BYTE DbcTbl[] = MKCVTBL(TBL_DC, FF_CODE_PAGE);
541 #if FF_CODE_PAGE == 0 /* Variable code page */ in dbc_1st()
546 #elif FF_CODE_PAGE >= 900 /* DBCS fixed code page */ in dbc_1st()
561 #if FF_CODE_PAGE == 0 /* Variable code page */ in dbc_2nd()
567 #elif FF_CODE_PAGE >= 900 /* DBCS fixed code page */ in dbc_2nd()
[all …]
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)