Lines Matching refs:DbcTbl
566 static const BYTE *ExCvt, *DbcTbl; /* Pointer to current SBCS up-case table and DBCS code range tab… variable
596 static const BYTE DbcTbl[] = MKCVTBL(TBL_DC, FF_CODE_PAGE);
691 if (DbcTbl && c >= DbcTbl[0]) { in dbc_1st()
692 if (c <= DbcTbl[1]) return 1; /* 1st byte range 1 */ in dbc_1st()
693 if (c >= DbcTbl[2] && c <= DbcTbl[3]) return 1; /* 1st byte range 2 */ in dbc_1st()
696 if (c >= DbcTbl[0]) { in dbc_1st()
697 if (c <= DbcTbl[1]) return 1; in dbc_1st()
698 if (c >= DbcTbl[2] && c <= DbcTbl[3]) return 1; in dbc_1st()
711 if (DbcTbl && c >= DbcTbl[4]) { in dbc_2nd()
712 if (c <= DbcTbl[5]) return 1; /* 2nd byte range 1 */ in dbc_2nd()
713 if (c >= DbcTbl[6] && c <= DbcTbl[7]) return 1; /* 2nd byte range 2 */ in dbc_2nd()
714 if (c >= DbcTbl[8] && c <= DbcTbl[9]) return 1; /* 2nd byte range 3 */ in dbc_2nd()
717 if (c >= DbcTbl[4]) { in dbc_2nd()
718 if (c <= DbcTbl[5]) return 1; in dbc_2nd()
719 if (c >= DbcTbl[6] && c <= DbcTbl[7]) return 1; in dbc_2nd()
720 if (c >= DbcTbl[8] && c <= DbcTbl[9]) return 1; in dbc_2nd()
6974 DbcTbl = tables[i];
6977 DbcTbl = 0;