Searched refs:from_ucs (Results 1 – 5 of 5) sorted by relevance
/picolibc-3.7.0-3.6.0/newlib/libc/iconv/lib/ |
D | ucsconv.c | 88 uc->from_ucs.handlers = from_ucs_bices->handlers; in ucs_based_conversion_open() 104 uc->from_ucs.data = from_ucs_bices->handlers->init (to); in ucs_based_conversion_open() 105 if (uc->from_ucs.data == NULL) in ucs_based_conversion_open() 109 uc->from_ucs.data = (void *)&fake_data; in ucs_based_conversion_open() 132 if (uc->from_ucs.handlers->close != NULL) in ucs_based_conversion_close() 133 res = uc->from_ucs.handlers->close (uc->from_ucs.data); in ucs_based_conversion_close() 191 bytes = uc->from_ucs.handlers->convert_from_ucs (uc->from_ucs.data, ch, in ucs_based_conversion_convert() 216 bytes = uc->from_ucs.handlers->convert_from_ucs ( in ucs_based_conversion_convert() 217 uc->from_ucs.data, in ucs_based_conversion_convert() 244 return uc->from_ucs.handlers->get_mb_cur_max (uc->from_ucs.data); in ucs_based_conversion_get_mb_cur_max() [all …]
|
D | ucsconv.h | 275 iconv_from_ucs_ces_desc_t from_ucs; member
|
/picolibc-3.7.0-3.6.0/newlib/libc/iconv/ccs/ |
D | ccs.h | 137 const __uint16_t *from_ucs; /* UCS -> CCS table */ member
|
/picolibc-3.7.0-3.6.0/newlib/libc/iconv/ces/ |
D | table.c | 106 if (biccsp->from_ucs == NULL in table_init_from_ucs() 114 ccsp->tbl = biccsp->from_ucs; in table_init_from_ucs()
|
/picolibc-3.7.0-3.6.0/newlib/libc/iconv/ |
D | iconv.tex | 997 @dfn{from_ucs} and @dfn{to_ucs} subtables. "from_ucs" subtable maps 1013 Obviously, the simplest way to create the "from_ucs" table or the 1025 In case of the 8-bit speed-optimized table the "from_ucs" subtable 1026 corresponds the "from_ucs" array and has the following layout: 1029 from_ucs array: 1071 "from_ucs" array. If there is no codes in the subrange, the heading 1077 is defined in the first 2-byte element of the "from_ucs" array. 1086 of the "from_ucs" array, @emph{X} is 0xFF. Else, continue to search. 1098 @emph{from_ucs[BlkN+Xindex]}) value is 0xFF, there is no corresponding 1099 CCS code (error, wrong input data). Else, @emph{X = from_ucs[BlkN+Xindex]}. [all …]
|