Home
last modified time | relevance | path

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

/hal_espressif-2.7.6/components/fatfs/src/
Dff.c532 static const BYTE *ExCvt, *DbcTbl; /* Pointer to current SBCS up-case table and DBCS code range tab… variable
562 static const BYTE DbcTbl[] = MKCVTBL(TBL_DC, FF_CODE_PAGE);
704 if (DbcTbl && c >= DbcTbl[0]) { in dbc_1st()
705 if (c <= DbcTbl[1]) return 1; /* 1st byte range 1 */ in dbc_1st()
706 if (c >= DbcTbl[2] && c <= DbcTbl[3]) return 1; /* 1st byte range 2 */ in dbc_1st()
709 if (c >= DbcTbl[0]) { in dbc_1st()
710 if (c <= DbcTbl[1]) return 1; in dbc_1st()
711 if (c >= DbcTbl[2] && c <= DbcTbl[3]) return 1; in dbc_1st()
724 if (DbcTbl && c >= DbcTbl[4]) { in dbc_2nd()
725 if (c <= DbcTbl[5]) return 1; /* 2nd byte range 1 */ in dbc_2nd()
[all …]