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

12345678

/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM/
H A DEmulateInstructionARM.h293 // Pass along (ARMEncoding)encoding as the callback data.
300 EmulateInstructionARM::ARMEncoding encoding; member in struct:lldb_private::EmulateInstructionARM::__anon1447
305 const EmulateInstructionARM::ARMEncoding encoding);
320 bool EmulatePUSH(const uint32_t opcode, const ARMEncoding encoding);
323 bool EmulatePOP(const uint32_t opcode, const ARMEncoding encoding);
326 bool EmulateADDRdSPImm(const uint32_t opcode, const ARMEncoding encoding);
329 bool EmulateMOVRdSP(const uint32_t opcode, const ARMEncoding encoding);
332 bool EmulateMOVLowHigh(const uint32_t opcode, const ARMEncoding encoding);
336 const ARMEncoding encoding);
339 bool EmulateADDSPImm(const uint32_t opcode, const ARMEncoding encoding);
[all...]
/freebsd-11-stable/contrib/elftoolchain/libelf/
H A Dgelf_xlate.c36 elf32_xlatetof(Elf_Data *dst, const Elf_Data *src, unsigned int encoding) argument
38 return _libelf_xlate(dst, src, encoding, ELFCLASS32, EM_NONE,
43 elf64_xlatetof(Elf_Data *dst, const Elf_Data *src, unsigned int encoding) argument
45 return _libelf_xlate(dst, src, encoding, ELFCLASS64, EM_NONE,
50 elf32_xlatetom(Elf_Data *dst, const Elf_Data *src, unsigned int encoding) argument
52 return _libelf_xlate(dst, src, encoding, ELFCLASS32, EM_NONE,
57 elf64_xlatetom(Elf_Data *dst, const Elf_Data *src, unsigned int encoding) argument
59 return _libelf_xlate(dst, src, encoding, ELFCLASS64, EM_NONE,
65 unsigned int encoding)
68 return (_libelf_xlate(dst, src, encoding,
64 gelf_xlatetom(Elf *e, Elf_Data *dst, const Elf_Data *src, unsigned int encoding) argument
75 gelf_xlatetof(Elf *e, Elf_Data *dst, const Elf_Data *src, unsigned int encoding) argument
[all...]
H A Dlibelf_xlate.c47 _libelf_xlate(Elf_Data *dst, const Elf_Data *src, unsigned int encoding, argument
55 if (encoding == ELFDATANONE)
56 encoding = LIBELF_PRIVATE(byteorder);
58 if ((encoding != ELFDATA2LSB && encoding != ELFDATA2MSB) ||
135 byteswap = encoding != LIBELF_PRIVATE(byteorder);
/freebsd-11-stable/tools/tools/vt/keymaps/
H A Dconvert-keymaps.pl58 my ($lang_old, $lang_new, $encoding) = split(" ");
59 # print "$lang_old|$lang_new|$encoding\n";
61 $ENCODING{$lang_old} = $encoding;
62 $ENCODING{$lang_new} = $encoding;
73 my ($encoding, $file_old, $file_new) = split(" ");
74 # print "--> ", join("|", $encoding, $file_old, $file_new, $file_locale), "\n";
75 if ($encoding and $file_old and $file_new) {
76 $ENCODING{$file_old} = $encoding;
86 my ($encoding) = $ENCODING{$basename};
87 $encoding
[all...]
H A Dconvert-INDEX.pl58 my ($lang_old, $lang_new, $encoding) = split(" ");
59 # print "$lang_old|$lang_new|$encoding\n";
61 $ENCODING{$lang_old} = $encoding;
62 $ENCODING{$lang_new} = $encoding;
73 my ($encoding, $file_old, $file_new) = split(" ");
74 # print "--> ", join("|", $encoding, $file_old, $file_new, $file_locale), "\n";
75 if ($encoding and $file_old and $file_new) {
76 $ENCODING{$file_old} = $encoding;
89 my ($lang) = split(/,/, $langlist); # first language in list selects encoding
/freebsd-11-stable/contrib/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...]
H A Dunwind-dw2-fde.c90 ob->s.b.encoding = DW_EH_PE_omit;
137 ob->s.b.encoding = DW_EH_PE_omit;
241 base_from_object (unsigned char encoding, struct object *ob)
243 if (encoding == DW_EH_PE_omit)
246 switch (encoding & 0x70)
262 /* Return the FDE pointer encoding from the CIE. */
292 /* Personality encoding and pointer. */
300 /* LSDA encoding. */
343 base = base_from_object (ob->s.b.encoding, ob);
344 read_encoded_value_with_base (ob->s.b.encoding, bas
240 base_from_object(unsigned char encoding, struct object *ob) argument
602 int encoding = DW_EH_PE_absptr; local
656 int encoding = ob->s.b.encoding; local
773 int encoding = ob->s.b.encoding; local
869 int encoding = ob->s.b.encoding; local
907 int encoding; local
1015 int encoding; local
[all...]
H A Dunwind-dw2-fde-darwin.c195 ob->s.b.encoding = DW_EH_PE_omit;
222 int encoding;
228 encoding = ob->s.b.encoding;
230 encoding = get_fde_encoding (result);
231 read_encoded_value_with_base (encoding,
232 base_from_object (encoding, ob),
221 int encoding; local
/freebsd-11-stable/contrib/ntp/lib/isc/include/isc/
H A Dxml.h31 #include <libxml/encoding.h>
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/
H A Dtst.aggpackbanner.ksh64 dtrace -qs /dev/stdin -x encoding=utf8 <<EOF
68 dtrace -qs /dev/stdin -x encoding=ascii -x aggzoom <<EOF
72 dtrace -qs /dev/stdin -x encoding=utf8 -x aggzoom <<EOF
H A Dtst.aggencoding.d17 #pragma D option encoding=utf8
H A Dtst.aggzoom.d16 #pragma D option encoding=ascii
H A Dtst.aggpackzoom.d16 #pragma D option encoding=ascii
/freebsd-11-stable/contrib/llvm-project/libunwind/src/
H A DCompactUnwinder.hpp70 _LIBUNWIND_ABORT("invalid compact unwind encoding");
105 _LIBUNWIND_DEBUG_LOG("bad register for EBP frame, encoding=%08X for "
108 _LIBUNWIND_ABORT("invalid compact unwind encoding");
119 compact_unwind_encoding_t encoding, uint32_t functionStart,
122 EXTRACT_BITS(encoding, UNWIND_X86_FRAMELESS_STACK_SIZE);
124 EXTRACT_BITS(encoding, UNWIND_X86_FRAMELESS_STACK_ADJUST);
126 EXTRACT_BITS(encoding, UNWIND_X86_FRAMELESS_STACK_REG_COUNT);
128 EXTRACT_BITS(encoding, UNWIND_X86_FRAMELESS_STACK_REG_PERMUTATION);
224 _LIBUNWIND_DEBUG_LOG("bad register for frameless, encoding=%08X for "
226 encoding, functionStar
118 stepWithCompactEncodingFrameless( compact_unwind_encoding_t encoding, uint32_t functionStart, A &addressSpace, Registers_x86 &registers, bool indirectStackSize) argument
349 stepWithCompactEncodingFrameless( compact_unwind_encoding_t encoding, uint64_t functionStart, A &addressSpace, Registers_x86_64 &registers, bool indirectStackSize) argument
531 stepWithCompactEncodingFrameless( compact_unwind_encoding_t encoding, uint64_t, A &addressSpace, Registers_arm64 &registers) argument
613 stepWithCompactEncodingFrame( compact_unwind_encoding_t encoding, uint64_t, A &addressSpace, Registers_arm64 &registers) argument
[all...]
/freebsd-11-stable/contrib/apr/
H A Dbuild.conf9 encoding/*.c
/freebsd-11-stable/contrib/groff/src/include/
H A DDviChar.h8 * The encoding names are taken from X -
24 const char *encoding; member in struct:_dviCharNameMap
/freebsd-11-stable/lib/libc/locale/
H A Drunefile.h46 char encoding[32]; member in struct:__anon6667
/freebsd-11-stable/contrib/groff/src/libs/libxutil/
H A DDviChar.c30 DviFindMap (char *encoding) argument
37 if (!strcmp (m->map->encoding, encoding))
50 if (!strcmp (m->map->encoding, map->encoding))
/freebsd-11-stable/contrib/elftoolchain/strings/
H A Dstrings.c69 (encoding == ENCODING_8BIT && (c) > 127)))
72 static enum encoding_style encoding; variable in typeref:enum:encoding_style
79 { "encoding", required_argument, NULL, 'e'},
119 encoding = ENCODING_7BIT;
121 encoding = ENCODING_8BIT;
123 encoding = ENCODING_16BIT_BIG;
126 encoding = ENCODING_32BIT_BIG;
129 encoding = ENCODING_16BIT_LITTLE;
132 encoding = ENCODING_32BIT_LITTLE;
291 * Retrieves a character from input stream based on the encoding
[all...]
/freebsd-11-stable/tools/tools/locale/tools/
H A Dcharmaps.pm52 my $encoding = $attrs{encoding};
64 $d{L}{$name}{$f}{encoding} = $encoding;
68 if (defined $encoding) {
69 foreach my $e (split(" ", $encoding)) {
82 foreach my $e (split(" ", $attrs{encoding})) {
/freebsd-11-stable/sys/amd64/vmm/intel/
H A Dvmcs.c61 vmcs_fix_regval(uint32_t encoding, uint64_t val) argument
64 switch (encoding) {
193 uint32_t encoding; local
197 * the translation of 'ident' to 'encoding' by simply setting the
203 encoding = ident & 0x7fffffff;
205 encoding = vmcs_field_encoding(ident);
207 if (encoding == (uint32_t)-1)
213 error = vmread(encoding, retval);
225 uint32_t encoding; local
228 encoding
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/tools/compact-unwind/
H A Dcompact-unwind-dumper.c471 uint32_t encoding) {
472 int mode = encoding & UNWIND_X86_64_MODE_MASK;
478 EXTRACT_BITS(encoding, UNWIND_X86_64_RBP_FRAME_OFFSET);
481 EXTRACT_BITS(encoding, UNWIND_X86_64_RBP_FRAME_REGISTERS);
513 EXTRACT_BITS(encoding, UNWIND_X86_64_FRAMELESS_STACK_SIZE);
515 EXTRACT_BITS(encoding, UNWIND_X86_64_FRAMELESS_STACK_REG_COUNT);
517 EXTRACT_BITS(encoding, UNWIND_X86_64_FRAMELESS_STACK_REG_PERMUTATION);
521 EXTRACT_BITS(encoding, UNWIND_X86_64_FRAMELESS_STACK_ADJUST);
526 EXTRACT_BITS(encoding, UNWIND_X86_64_FRAMELESS_STACK_SIZE);
673 uint32_t dwarf_offset = encoding
470 print_encoding_x86_64(struct baton baton, uint8_t *function_start, uint32_t encoding) argument
686 print_encoding_i386(struct baton baton, uint8_t *function_start, uint32_t encoding) argument
902 print_encoding_arm64(struct baton baton, uint8_t *function_start, uint32_t encoding) argument
1007 print_encoding_armv7(struct baton baton, uint8_t *function_start, uint32_t encoding) argument
1145 print_encoding(struct baton baton, uint8_t *function_start, uint32_t encoding) argument
1161 print_function_encoding(struct baton baton, uint32_t idx, uint32_t encoding, uint32_t entry_encoding_index, uint32_t entry_func_offset) argument
1280 uint32_t encoding = *((uint32_t *)(offset + 4)); local
1310 uint32_t encoding; local
1486 uint32_t encoding = *((uint32_t *)common_encodings); local
[all...]
/freebsd-11-stable/sbin/iscontrol/
H A Dmisc.c160 bin2str(char *encoding, unsigned char *md, int blen) argument
166 if(strncasecmp(encoding, "0x", 2) == 0) {
171 strcpy(dst, encoding);
174 sprintf(ofmt, "%%02%c", encoding[1]);
182 if(strncasecmp(encoding, "0b", 2) == 0) {
187 strcpy(dst, encoding);
/freebsd-11-stable/contrib/libcxxrt/
H A Ddwarf_eh.h57 /// DWARF data encoding types.
81 * Returns the encoding for a DWARF EH table entry. The encoding is stored in
92 * is. The low four bits tell you the encoding, allowing you to decode a
114 * Returns the addressing mode component of this encoding.
121 * Returns whether an encoding represents an indirect address.
129 * Returns the size of a fixed-size encoding. This function will abort if
130 * called with a value that is not a fixed-size encoding.
214 * Reads a value using the specified encoding from the address pointed to by
218 static uint64_t read_value(char encoding, dw_eh_ptr_
[all...]

Completed in 163 milliseconds

12345678