Searched defs:ccsid (Results 1 - 5 of 5) sorted by relevance

/external/libxml2/os400/iconv/
H A Diconv.c33 t_ccsid ccsid; local
84 makeos400codename(char * buf, unsigned int ccsid) argument
87 ccsid &= 0xFFFF;
89 sprintf(buf, "IBMCCSID%05u0000000", ccsid);
/external/icu/icu4c/source/common/
H A Dputil.cpp1839 uint32_t ccsid = 37; /* Default to ibm-37 */ local
1849 ccsid = (uint32_t)jobinfo.Coded_Char_Set_ID;
1852 ccsid = (uint32_t)jobinfo.Default_Coded_Char_Set_Id;
1856 sprintf(codepage,"ibm-%d", ccsid);
H A Ducnv.c684 int32_t ccsid; local
688 ccsid = converter->sharedData->staticData->codepage;
689 if (ccsid == 0) {
696 ccsid = (int32_t)atol(ccsidStr+1); /* +1 to skip '-' */
700 return ccsid;
/external/libxml2/os400/iconv/bldcsndfa/
H A Dbldcsndfa.c161 static const utf8char utf8_ccsid[] = "ccsid";
164 static const utf8char utf8_assocnodes[] = "/ccsid_mibenum/assoc[@ccsid]";
166 "/ccsid_mibenum/assoc[@ccsid=$C]/alias/text()";
246 makecode(char * buf, unsigned int ccsid) argument
249 ccsid &= 0xFFFF;
251 sprintf(buf, "IBMCCSID%05u0000000", ccsid);
878 unsigned int ccsid; local
900 ccsid = getNumAttr(node, utf8_ccsid);
908 if (ccsid && ccsid
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Dccapitst.c1894 int32_t i, ccsid; local
1897 ccsid=ccsids[i];
1900 cnv=ucnv_openCCSID(ccsid, UCNV_IBM, &errorCode);
1902 log_data_err("error: ucnv_openCCSID(%ld) failed (%s)\n", ccsid, u_errorName(errorCode));
1906 if(ccsid!=ucnv_getCCSID(cnv, &errorCode)) {
1907 log_err("error: ucnv_getCCSID(ucnv_openCCSID(%ld))=%ld\n", ccsid, ucnv_getCCSID(cnv, &errorCode));
1910 /* skip gb18030(ccsid 1392) */
1911 if(ccsid != 1392 && UCNV_IBM!=ucnv_getPlatform(cnv, &errorCode)) {
1912 log_err("error: ucnv_getPlatform(ucnv_openCCSID(%ld))=%ld!=UCNV_IBM\n", ccsid, ucnv_getPlatform(cnv, &errorCode));

Completed in 1022 milliseconds