Searched refs:encoding (Results 1 - 25 of 395) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/external/bsd/libelf/dist/
H A Dgelf_xlate.c40 elf32_xlatetof(Elf_Data *dst, const Elf_Data *src, unsigned int encoding) argument
42 return _libelf_xlate(dst, src, encoding, ELFCLASS32, ELF_TOFILE);
46 elf64_xlatetof(Elf_Data *dst, const Elf_Data *src, unsigned int encoding) argument
48 return _libelf_xlate(dst, src, encoding, ELFCLASS64, ELF_TOFILE);
52 elf32_xlatetom(Elf_Data *dst, const Elf_Data *src, unsigned int encoding) argument
54 return _libelf_xlate(dst, src, encoding, ELFCLASS32, ELF_TOMEMORY);
58 elf64_xlatetom(Elf_Data *dst, const Elf_Data *src, unsigned int encoding) argument
60 return _libelf_xlate(dst, src, encoding, ELFCLASS64, ELF_TOMEMORY);
64 gelf_xlatetom(Elf *e, Elf_Data *dst, const Elf_Data *src, unsigned int encoding) argument
67 return (_libelf_xlate(dst, src, encoding,
74 gelf_xlatetof(Elf *e, Elf_Data *dst, const Elf_Data *src, unsigned int encoding) argument
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gettext/gettext-tools/lib/
H A Dlinebreak.h28 /* These functions are locale dependent. The encoding argument identifies
29 the encoding (e.g. "ISO-8859-2" for Polish). */
31 /* Return the encoding of the current locale. */
35 extern int uc_width (unsigned int uc, const char *encoding);
39 extern int u8_width (const unsigned char *s, size_t n, const char *encoding);
40 extern int u16_width (const unsigned short *s, size_t n, const char *encoding);
41 extern int u32_width (const unsigned int *s, size_t n, const char *encoding);
64 const char *encoding,
67 const char *encoding,
70 const char *encoding,
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gas/testsuite/gas/arm/
H A Dgroup-reloc-alu-encoding-bad.d1 #name: Group relocation tests, encoding failures (alu)
3 #error-output: group-reloc-alu-encoding-bad.l
H A Dgroup-reloc-ldc-encoding-bad.d1 #name: Group relocation tests, encoding failures (ldc)
3 #error-output: group-reloc-ldc-encoding-bad.l
H A Dgroup-reloc-ldr-encoding-bad.d1 #name: Group relocation tests, encoding failures (ldr)
3 #error-output: group-reloc-ldr-encoding-bad.l
H A Dgroup-reloc-ldrs-encoding-bad.d1 #name: Group relocation tests, encoding failures (ldrs)
3 #error-output: group-reloc-ldrs-encoding-bad.l
H A Dmsr-imm-bad.l2 [^:]*:9: Error: Thumb encoding does not support an immediate here -- `msr APSR,#0xc0000004'
3 [^:]*:10: Error: Thumb encoding does not support an immediate here -- `msr APSR_g,#0xc0000004'
4 [^:]*:11: Error: Thumb encoding does not support an immediate here -- `msr APSR_nzcvq,#0xc0000004'
5 [^:]*:12: Error: Thumb encoding does not support an immediate here -- `msr APSR_nzcvqg,#0xc0000004'
6 [^:]*:15: Error: Thumb encoding does not support an immediate here -- `msr CPSR,#0xc0000004'
7 [^:]*:16: Error: Thumb encoding does not support an immediate here -- `msr CPSR_s,#0xc0000004'
8 [^:]*:17: Error: Thumb encoding does not support an immediate here -- `msr CPSR_f,#0xc0000004'
9 [^:]*:18: Error: Thumb encoding does not support an immediate here -- `msr CPSR_c,#0xc0000004'
10 [^:]*:19: Error: Thumb encoding does not support an immediate here -- `msr CPSR_x,#0xc0000004'
11 [^:]*:22: Error: Thumb encoding doe
[all...]
H A Dthumb2_mul.s8 # These can use the 16-bit encoding.
12 # These must use the 32-bit encoding because they involve
18 # These must use the 32-bit encoding because the source and
23 # These must use the 32-bit encoding because of the explicit
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/python/
H A Dpy-lazy-string.c34 /* Holds the encoding that will be applied to the string
35 when the string is printed by GDB. If the encoding is set
37 encoding when the sting is printed. */
38 char *encoding; member in struct:__anon530
66 /* An encoding can be set to NULL by the user, so check before
68 if (self_string->encoding)
69 result = PyString_FromString (self_string->encoding);
117 xfree (self_string->encoding);
122 const char *encoding, struct type *type)
147 if (encoding
121 gdbpy_create_lazy_string_object(CORE_ADDR address, long length, const char *encoding, struct type *type) argument
179 gdbpy_extract_lazy_string(PyObject *string, CORE_ADDR *addr, struct type **str_type, long *length, char **encoding) argument
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/
H A Dintl.c66 const char *encoding; local
73 encoding = nl_langinfo (CODESET);
74 if (encoding != NULL
75 && (!strcasecmp (encoding, "utf-8")
76 || !strcasecmp (encoding, "utf8")))
H A Dunwind-pe.h70 /* Given an encoding, return the number of bytes the format occupies.
75 size_of_encoded_value (unsigned char encoding)
77 if (encoding == DW_EH_PE_omit)
80 switch (encoding & 0x07)
98 /* Given an encoding and an _Unwind_Context, return the base to which
99 the encoding is relative. This base may then be passed to
104 base_of_encoded_value (unsigned char encoding, struct _Unwind_Context *context)
106 if (encoding == DW_EH_PE_omit)
109 switch (encoding & 0x70)
181 by base_of_encoded_value for this encoding i
74 size_of_encoded_value(unsigned char encoding) argument
103 base_of_encoded_value(unsigned char encoding, struct _Unwind_Context *context) argument
183 read_encoded_value_with_base(unsigned char encoding, _Unwind_Ptr base, const unsigned char *p, _Unwind_Ptr *val) argument
281 read_encoded_value(struct _Unwind_Context *context, unsigned char encoding, const unsigned char *p, _Unwind_Ptr *val) argument
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/isc/include/isc/
H A Dxml.h33 #include <libxml/encoding.h>
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/lib/isc/include/isc/
H A Dxml.h33 #include <libxml/encoding.h>
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.target/i386/
H A D990213-2.c9 struct encoding*
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.target/i386/
H A D990213-2.c8 struct encoding*
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/objc.dg/
H A Dencode-7.m4 #include <objc/encoding.h>
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/contrib/idn/idnkit-1.0-src/lib/
H A Daliaslist.c64 char *encoding; /* MIME-preferred charset name */ member in struct:aliasitem
75 const char *pattern, const char *encoding);
79 const char *pattern, const char *encoding);
83 static idn_result_t create_item(const char *pattern, const char *encoding,
120 if (current->encoding != NULL) {
121 free(current->encoding);
174 const char *pattern, const char *encoding,
177 return additem_to_top(list, pattern, encoding);
179 return additem_to_bottom(list, pattern, encoding);
185 const char *pattern, const char *encoding) {
173 idn__aliaslist_additem(idn__aliaslist_t list, const char *pattern, const char *encoding, int first_item) argument
184 additem_to_top(idn__aliaslist_t list, const char *pattern, const char *encoding) argument
212 additem_to_bottom(idn__aliaslist_t list, const char *pattern, const char *encoding) argument
308 create_item(const char *pattern, const char *encoding, aliasitem_t *itemp) argument
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/
H A Dunwind-pe.h65 /* Given an encoding, return the number of bytes the format occupies.
70 size_of_encoded_value (unsigned char encoding) __attribute__ ((unused));
73 size_of_encoded_value (unsigned char encoding)
75 if (encoding == DW_EH_PE_omit)
78 switch (encoding & 0x07)
96 /* Given an encoding and an _Unwind_Context, return the base to which
97 the encoding is relative. This base may then be passed to
102 base_of_encoded_value (unsigned char encoding, struct _Unwind_Context *context)
104 if (encoding == DW_EH_PE_omit)
107 switch (encoding
72 size_of_encoded_value(unsigned char encoding) argument
101 base_of_encoded_value(unsigned char encoding, struct _Unwind_Context *context) argument
181 read_encoded_value_with_base(unsigned char encoding, _Unwind_Ptr base, const unsigned char *p, _Unwind_Ptr *val) argument
279 read_encoded_value(struct _Unwind_Context *context, unsigned char encoding, const unsigned char *p, _Unwind_Ptr *val) argument
[all...]
/netbsd-6-1-5-RELEASE/usr.bin/audio/common/
H A Dsun.c57 int encoding; member in struct:__anon9782
90 *encp = file2sw_encodings[i].encoding;
97 audio_encoding_to_sun(int encoding, int precision, int *sunep) argument
102 if (file2sw_encodings[i].encoding == encoding &&
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/contrib/idn/idnkit-1.0-src/wsock/common/
H A Dconvert.c73 char encoding[256]; local
113 if (idnGetPrgEncoding(encoding, sizeof(encoding)) == TRUE) {
114 idnPrintf("Encoding PRG <%-.100s>\n", encoding);
115 r = idn_resconf_setlocalconvertername(ctx, encoding,
120 encoding, idn_result_tostring(r));
131 * convert local encoding to DNS encoding
162 * convert DNS encoding to local encoding
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/objc.dg/gnu-encoding/
H A Dstruct-layout-1_test.h7 if (objc_sizeof_type (@encoding (type S##n)) != sizeof(type S##n)) \
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/22_locale/codecvt/encoding/wchar_t/
H A D1.cc36 int i = cvt->encoding();
H A D2.cc41 int i = cvt->encoding();
42 VERIFY( i == 1 ); // ISO-8859-1 is a single-byte encoding
H A D3.cc41 int i = cvt->encoding();
42 VERIFY( i == 1 ); // ISO-8859-15 is a single-byte encoding
H A D4.cc41 int i = cvt->encoding();
42 VERIFY( i == 0 ); // UTF-8 is a stateless multibyte encoding

Completed in 241 milliseconds

1234567891011>>