Home
last modified time | relevance | path

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

/picolibc-3.5.0-3.4.0/newlib/
Dnewlib.hin60 /* Support big5 input encoding. */
63 /* Support cp775 input encoding. */
66 /* Support cp850 input encoding. */
69 /* Support cp852 input encoding. */
72 /* Support cp855 input encoding. */
75 /* Support cp866 input encoding. */
78 /* Support euc_jp input encoding. */
81 /* Support euc_kr input encoding. */
84 /* Support euc_tw input encoding. */
87 /* Support iso_8859_1 input encoding. */
[all …]
Drefcontainers.xslt3 …<xsl:output method="xml" encoding="UTF-8" indent="yes" doctype-public="-//OASIS//DTD DocBook V4.5/…
DChangeLog-20155760 value encoding.
10254 to fix reentrancy and bug on encoding error in multibyte locales.
13577 * libc/iconv/encoding.aliases: New file.
13727 * libc/iconv/lib/encoding.deps: Ditto.
/picolibc-3.5.0-3.4.0/newlib/libc/iconv/ces/
Dmkdeps.pl248 my $encoding;
259 if defined $encoding;
261 $encoding = $2;
293 err "(process_section_encodings()) $encoding is defined twice"
294 if (defined $encces{$encoding});
296 if not defined $encoding;
300 push @{$cesenc{$ces}}, $encoding;
301 $encces{$encoding} = $ces;
307 push @{$ccsenc{$_}}, $encoding foreach (@ccs);
309 $encalias{$encoding} = $aliases;
[all …]
Dtable-pcs.c67 const char *encoding) in table_pcs_from_ucs_init() argument
69 return _iconv_from_ucs_ces_handlers_table.init (encoding); in table_pcs_from_ucs_init()
111 const char *encoding) in table_pcs_to_ucs_init() argument
113 return _iconv_to_ucs_ces_handlers_table.init (encoding); in table_pcs_to_ucs_init()
Dutf-16.c70 const char *encoding) in utf_16_init_from_ucs() argument
77 if (strcmp (encoding, UTF_16LE) == 0) in utf_16_init_from_ucs()
79 else if (strcmp (encoding, UTF_16BE) == 0) in utf_16_init_from_ucs()
170 const char *encoding) in utf_16_init_to_ucs() argument
177 if (strcmp (encoding, UTF_16BE) == 0) in utf_16_init_to_ucs()
179 else if (strcmp (encoding, UTF_16LE) == 0) in utf_16_init_to_ucs()
Deuc.c104 const char *encoding) in euc_from_ucs_init() argument
114 if (strcmp (encoding, ICONV_ENCODING_EUC_JP) == 0) in euc_from_ucs_init()
124 if (strcmp (encoding, ICONV_ENCODING_EUC_KR) == 0) in euc_from_ucs_init()
134 if (strcmp (encoding, ICONV_ENCODING_EUC_TW) == 0) in euc_from_ucs_init()
259 const char *encoding) in euc_to_ucs_init() argument
269 if (strcmp (encoding, ICONV_ENCODING_EUC_JP) == 0) in euc_to_ucs_init()
279 if (strcmp (encoding, ICONV_ENCODING_EUC_KR) == 0) in euc_to_ucs_init()
289 if (strcmp (encoding, ICONV_ENCODING_EUC_TW) == 0) in euc_to_ucs_init()
Ducs-2.c53 const char *encoding) in ucs_2_init() argument
60 if (strcmp (encoding, UCS_2LE) == 0) in ucs_2_init()
Ducs-4.c54 const char *encoding) in ucs_4_init() argument
61 if (strcmp (encoding, UCS_4LE) == 0) in ucs_4_init()
Dtable.c91 const char *encoding) in table_init_from_ucs() argument
98 if (strcmp (_iconv_ccs[i]->name, encoding) == 0) in table_init_from_ucs()
120 return (void *)load_file (encoding, 1); in table_init_from_ucs()
172 const char *encoding) in table_init_to_ucs() argument
179 if (strcmp (_iconv_ccs[i]->name, encoding) == 0) in table_init_to_ucs()
201 return (void *)load_file (encoding, 0); in table_init_to_ucs()
/picolibc-3.5.0-3.4.0/newlib/libc/posix/
Dcollate.c62 __collate_load_tables(char *encoding) in __collate_load_tables() argument
70 if (!encoding) { in __collate_load_tables()
74 if (!strcmp(encoding, "C") || !strcmp(encoding, "POSIX")) in __collate_load_tables()
83 (void) strcat(buf, encoding); in __collate_load_tables()
Drunetype.h70 char encoding[32]; /* ASCII name of this encoding */ member
/picolibc-3.5.0-3.4.0/newlib/libc/iconv/lib/
Diconvnls.c310 const char *encoding, in _iconv_nls_open() argument
326 if ((*towc = iconv_open (wchar_encoding, encoding)) == (iconv_t)-1) in _iconv_nls_open()
329 if ((*tomb = iconv_open (encoding, wchar_encoding)) == (iconv_t)-1) in _iconv_nls_open()
337 if ((*towc = iconv_open1 (wchar_encoding, encoding)) == (iconv_t)-1) in _iconv_nls_open()
340 if ((*tomb = iconv_open1 (encoding, wchar_encoding)) == (iconv_t)-1) in _iconv_nls_open()
Ducsconv.h70 const char *encoding);
173 const char *encoding);
Dencoding.deps39 # 2. Each encoding's aliases;
70 # encoding when sizeof(wchar_t) == 2
103 # encoding when sizeof(wchar_t) == 4
371 # big5 - an encoding for Traditional Chinese
/picolibc-3.5.0-3.4.0/newlib/libc/iconv/
Diconv.tex17 * The encodings description file:: The 'encoding.deps' file and 'mkdeps.pl'
18 * How to add new encoding:: The steps to add new encoding support
29 @findex encoding
35 The iconv library is intended to convert characters from one encoding to
56 Terms like @dfn{encoding} or @dfn{character set} aren't well defined and
63 @dfn{encoding} - a machine representation of characters by means of bits;
67 characters, i.e. the encoding is the machine representation of the character set;
91 of a CES and form some encoding. Thus, CES may be considered as a
92 function of CCS which produces some encoding. Note, that CES may be
97 Thus, an encoding may be considered as one or more CCS + CES.
[all …]
/picolibc-3.5.0-3.4.0/newlib/libc/include/sys/
Diconvnls.h71 _iconv_nls_open (const char *encoding,
/picolibc-3.5.0-3.4.0/
Dmeson.build1134 # Dig out the list of available encodings from the encoding.aliases file. Only
1141 foreach line : fs.read('newlib/libc/iconv/encoding.aliases').split('\n')
1147 …-e', '/^#/d', '-e', '/^$/d', '-e', 's/ .*$//', files('newlib/libc/iconv/encoding.aliases')[0]], ch…
1172 # Set config variables for each requested 'from' encoding
1177 …error('Requested from encoding ' + from + ' is not available. Look in newlib/libc/iconv/encoding.a…
1185 # Set config variables for each requested 'to' encoding
1189 …error('Requested to encoding ' + to + ' is not available. Look in newlib/libc/iconv/encoding.alias…
DCONTRIBUTING.md57 * utf-8 encoding
DCOPYING.picolibc27 newlib/libc/iconv/lib/encoding.deps
/picolibc-3.5.0-3.4.0/newlib/doc/
Dmakedocbook.py824 s = lxml.etree.tostring(rootelement, pretty_print=True, encoding='unicode')