Home
last modified time | relevance | path

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

/picolibc-latest/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.c66 const char *encoding) in table_pcs_from_ucs_init() argument
68 return _iconv_from_ucs_ces_handlers_table.init (encoding); in table_pcs_from_ucs_init()
110 const char *encoding) in table_pcs_to_ucs_init() argument
112 return _iconv_to_ucs_ces_handlers_table.init (encoding); in table_pcs_to_ucs_init()
Dutf-16.c69 const char *encoding) in utf_16_init_from_ucs() argument
76 if (strcmp (encoding, UTF_16LE) == 0) in utf_16_init_from_ucs()
78 else if (strcmp (encoding, UTF_16BE) == 0) in utf_16_init_from_ucs()
169 const char *encoding) in utf_16_init_to_ucs() argument
176 if (strcmp (encoding, UTF_16BE) == 0) in utf_16_init_to_ucs()
178 else if (strcmp (encoding, UTF_16LE) == 0) in utf_16_init_to_ucs()
Deuc.c100 const char *encoding) in euc_from_ucs_init() argument
110 if (strcmp (encoding, ICONV_ENCODING_EUC_JP) == 0) in euc_from_ucs_init()
120 if (strcmp (encoding, ICONV_ENCODING_EUC_KR) == 0) in euc_from_ucs_init()
130 if (strcmp (encoding, ICONV_ENCODING_EUC_TW) == 0) in euc_from_ucs_init()
255 const char *encoding) in euc_to_ucs_init() argument
265 if (strcmp (encoding, ICONV_ENCODING_EUC_JP) == 0) in euc_to_ucs_init()
275 if (strcmp (encoding, ICONV_ENCODING_EUC_KR) == 0) in euc_to_ucs_init()
285 if (strcmp (encoding, ICONV_ENCODING_EUC_TW) == 0) in euc_to_ucs_init()
Ducs-2.c52 const char *encoding) in ucs_2_init() argument
59 if (strcmp (encoding, UCS_2LE) == 0) in ucs_2_init()
Ducs-4.c53 const char *encoding) in ucs_4_init() argument
60 if (strcmp (encoding, UCS_4LE) == 0) in ucs_4_init()
Dtable.c89 const char *encoding) in table_init_from_ucs() argument
96 if (strcmp (_iconv_ccs[i]->name, encoding) == 0) in table_init_from_ucs()
118 return (void *)load_file (encoding, 1); in table_init_from_ucs()
170 const char *encoding) in table_init_to_ucs() argument
177 if (strcmp (_iconv_ccs[i]->name, encoding) == 0) in table_init_to_ucs()
199 return (void *)load_file (encoding, 0); in table_init_to_ucs()
/picolibc-latest/newlib/libc/iconv/lib/
Diconvnls.c308 const char *encoding, in _iconv_nls_open() argument
324 if ((*towc = iconv_open (wchar_encoding, encoding)) == (iconv_t)-1) in _iconv_nls_open()
327 if ((*tomb = iconv_open (encoding, wchar_encoding)) == (iconv_t)-1) in _iconv_nls_open()
335 if ((*towc = iconv_open1 (wchar_encoding, encoding)) == (iconv_t)-1) in _iconv_nls_open()
338 if ((*tomb = iconv_open1 (encoding, wchar_encoding)) == (iconv_t)-1) in _iconv_nls_open()
Ducsconv.h69 const char *encoding);
172 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-latest/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-latest/newlib/libc/include/sys/
Diconvnls.h71 _iconv_nls_open (const char *encoding,
/picolibc-latest/newlib/libc/posix/
Drunetype.h69 char encoding[32]; /* ASCII name of this encoding */ member
/picolibc-latest/newlib/
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-latest/
DCONTRIBUTING.md57 * utf-8 encoding
Dmeson.build1486 # Dig out the list of available encodings from the encoding.aliases file. Only
1493 foreach line : fs.read('newlib/libc/iconv/encoding.aliases').split('\n')
1499 …-e', '/^#/d', '-e', '/^$/d', '-e', 's/ .*$//', files('newlib/libc/iconv/encoding.aliases')[0]], ch…
1524 # Set config variables for each requested 'from' encoding
1529 …error('Requested from encoding ' + from + ' is not available. Look in newlib/libc/iconv/encoding.a…
1537 # Set config variables for each requested 'to' encoding
1541 …error('Requested to encoding ' + to + ' is not available. Look in newlib/libc/iconv/encoding.alias…
DCOPYING.picolibc27 newlib/libc/iconv/lib/encoding.deps
/picolibc-latest/newlib/doc/
Dmakedocbook.py824 s = lxml.etree.tostring(rootelement, pretty_print=True, encoding='unicode')