/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM/ |
H A D | EmulateInstructionARM.h | 290 // Pass along (ARMEncoding)encoding as the callback data. 297 EmulateInstructionARM::ARMEncoding encoding; member 302 const EmulateInstructionARM::ARMEncoding encoding); 317 bool EmulatePUSH(const uint32_t opcode, const ARMEncoding encoding); 320 bool EmulatePOP(const uint32_t opcode, const ARMEncoding encoding); 323 bool EmulateADDRdSPImm(const uint32_t opcode, const ARMEncoding encoding); 326 bool EmulateMOVRdSP(const uint32_t opcode, const ARMEncoding encoding); 329 bool EmulateMOVLowHigh(const uint32_t opcode, const ARMEncoding encoding); 333 const ARMEncoding encoding); 336 bool EmulateADDSPImm(const uint32_t opcode, const ARMEncoding encoding); [all …]
|
/freebsd/crypto/openssl/test/recipes/30-test_evp_data/ |
H A D | evpencod.txt | 10 # Cipher Decrypt Derive Digest Encoding KDF MAC PBE 16 Encoding = canonical 20 Encoding = canonical 24 Encoding = canonical 28 Encoding = canonical 32 Encoding = canonical 37 Encoding = invalid 40 Encoding = invalid 44 Encoding = valid 49 Encoding = invalid [all …]
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
H A D | X86RecognizableInstr.cpp | 118 Encoding = byteFromRec(Rec, "OpEncBits"); in RecognizableInstrBase() 198 if (Encoding == X86Local::EVEX) { in insnContext() 295 } else if (Encoding == X86Local::VEX || Encoding == X86Local::XOP) { in insnContext() 396 void RecognizableInstr::adjustOperandEncoding(OperandEncoding &encoding) { in adjustOperandEncoding() argument 397 // The scaling factor for AVX512 compressed displacement encoding is an in adjustOperandEncoding() 398 // instruction attribute. Adjust the ModRM encoding type to include the in adjustOperandEncoding() 400 if ((encoding != ENCODING_RM && encoding != ENCODING_VSIB && in adjustOperandEncoding() 401 encoding != ENCODING_SIB) || in adjustOperandEncoding() 404 encoding = (OperandEncoding)(encoding + Log2_32(CD8_Scale)); in adjustOperandEncoding() 405 assert(((encoding >= ENCODING_RM && encoding <= ENCODING_RM_CD64) || in adjustOperandEncoding() [all …]
|
/freebsd/tools/tools/locale/etc/ |
H A D | charmaps.xml | 5 encoding = encodings to be done - separated by space 10 encoding_link = link this original encoding too - separated \ 153 encoding: Space-separated list of encodings 162 <translation encoding="ISO8859-1" cldr="EURO_SIGN" string="Eu" /> 163 <translation encoding="ISO8859-2" cldr="EURO_SIGN" string="Eu" /> 164 <translation encoding="ISO8859-4" cldr="EURO_SIGN" string="Eu" /> 165 <translation encoding="ISO8859-13" cldr="EURO_SIGN" string="Eu" /> 168 <translation encoding="ISO8859-1 ISO8859-2 ISO8859-4 ISO8859-13 ISO8859-15" 170 <translation encoding="ISO8859-2" 176 <translation encoding="ISO8859-2" ucc="0408" [all …]
|
/freebsd/crypto/heimdal/doc/ |
H A D | layman.asc | 23 Encoding Rules (BER), and Distinguished Encoding Rules 52 services for strings of ones and zeroes, using encoding 60 ones and zeros is called the BER (Basic Encoding Rules, 68 Another set of rules, called the Distinguished Encoding 70 encoding to each ASN.1 value. 80 specific encoding rules, examples, and comments about their 241 String types can be viewed, for the purposes of encoding, as 246 length encoding (see Section 3). 299 For purposes of encoding, an implicitly tagged type is 318 3. Basic Encoding Rules [all …]
|
/freebsd/tools/tools/vt/keymaps/ |
H A D | convert-keymaps.pl | 25 my %ENCODING; # index: lang_old, file_old 57 my ($lang_old, $lang_new, $encoding) = split(" "); 58 # print "$lang_old|$lang_new|$encoding\n"; 60 $ENCODING{$lang_old} = $encoding; 61 $ENCODING{$lang_new} = $encoding; 72 my ($encoding, $file_old, $file_new) = split(" "); 73 # print "--> ", join("|", $encoding, $file_old, $file_new, $file_locale), "\n"; 74 if ($encoding and $file_old and $file_new) { 75 $ENCODING{$file_old} = $encoding; 85 my ($encoding) = $ENCODING{$basename}; [all …]
|
H A D | convert-INDEX.pl | 25 my %ENCODING; # index: lang_old, file_old 57 my ($lang_old, $lang_new, $encoding) = split(" "); 58 # print "$lang_old|$lang_new|$encoding\n"; 60 $ENCODING{$lang_old} = $encoding; 61 $ENCODING{$lang_new} = $encoding; 72 my ($encoding, $file_old, $file_new) = split(" "); 73 # print "--> ", join("|", $encoding, $file_old, $file_new, $file_locale), "\n"; 74 if ($encoding and $file_old and $file_new) { 75 $ENCODING{$file_old} = $encoding; 88 my ($lang) = split(/,/, $langlist); # first language in list selects encoding [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Format/ |
H A D | Encoding.h | 1 //===--- Encoding.h - Format C++ code ---------------------------*- C++ -*-===// 10 /// Contains functions for text encoding manipulation. Supports UTF-8, 24 namespace encoding { 26 enum Encoding { enum 31 /// Detects encoding of the Text. If the Text can be decoded using UTF-8, 32 /// it is considered UTF8, otherwise we treat it as some 8-bit encoding. 33 inline Encoding detectEncoding(StringRef Text) { in detectEncoding() 43 /// \p Encoding. 44 inline unsigned columnWidth(StringRef Text, Encoding Encoding) { in columnWidth() argument 45 if (Encoding == Encoding_UTF8) { in columnWidth() [all …]
|
/freebsd/crypto/openssl/doc/man7/ |
H A D | passphrase-encoding.pod | 3 =encoding utf8 7 passphrase-encoding 8 - How diverse parts of OpenSSL treat pass phrases character encoding 25 Using the wrong encoding is expected to cause a decryption failure. 29 PKCS#12 is a bit different regarding pass phrase encoding. 49 encoding of the characters, which it stores as a BMPString. 53 for other character sets, such as any ISO-8859-X encoding other than 66 and "LATIN CAPITAL LETTER Z WITH DOT ABOVE" in ISO-8859-2 encoding), but would 84 other pass phrase encoding may give undefined results. 85 This API relies on the application to ensure UTF-8 encoding, and doesn't check [all …]
|
/freebsd/contrib/expat/lib/ |
H A D | xmltok.h | 159 struct encoding; 160 typedef struct encoding ENCODING; typedef 162 typedef int(PTRCALL *SCANNER)(const ENCODING *, const char *, const char *, 172 struct encoding { struct 175 int(PTRCALL *nameMatchesAscii)(const ENCODING *, const char *, const char *, 177 int(PTRFASTCALL *nameLength)(const ENCODING *, const char *); 178 const char *(PTRFASTCALL *skipS)(const ENCODING *, const char *); 179 int(PTRCALL *getAtts)(const ENCODING *enc, const char *ptr, int attsMax, 181 int(PTRFASTCALL *charRefNumber)(const ENCODING *enc, const char *ptr); 182 int(PTRCALL *predefinedEntityName)(const ENCODING *, const char *, [all …]
|
H A D | xmlrole.c | 124 const ENCODING *enc); 142 const ENCODING *enc) { in prolog0() 173 const ENCODING *enc) { in prolog1() 205 const ENCODING *enc) { in prolog2() 225 const ENCODING *enc) { in doctype0() 242 const ENCODING *enc) { in doctype1() 268 const ENCODING *enc) { in doctype2() 284 const ENCODING *enc) { in doctype3() 300 const ENCODING *enc) { in doctype4() 319 const ENCODING *enc) { in doctype5() [all …]
|
H A D | xmltok_ns.c | 39 const ENCODING * 44 const ENCODING * 57 static const ENCODING *const NS(encodings)[] = { 65 NS(initScanProlog)(const ENCODING *enc, const char *ptr, const char *end, in NS() 72 NS(initScanContent)(const ENCODING *enc, const char *ptr, const char *end, in NS() 79 NS(XmlInitEncoding)(INIT_ENCODING *p, const ENCODING **encPtr, in NS() 93 static const ENCODING * 94 NS(findEncoding)(const ENCODING *enc, const char *ptr, const char *end) { in NS() 112 NS(XmlParseXmlDecl)(int isGeneralTextEntity, const ENCODING *enc, in NS() 115 const char **encodingName, const ENCODING **encoding, in NS() [all …]
|
H A D | xmltok.c | 135 isNever(const ENCODING *enc, const char *p) { in isNever() 142 utf8_isName2(const ENCODING *enc, const char *p) { in utf8_isName2() 148 utf8_isName3(const ENCODING *enc, const char *p) { in utf8_isName3() 156 utf8_isNmstrt2(const ENCODING *enc, const char *p) { in utf8_isNmstrt2() 162 utf8_isNmstrt3(const ENCODING *enc, const char *p) { in utf8_isNmstrt3() 170 utf8_isInvalid2(const ENCODING *enc, const char *p) { in utf8_isInvalid2() 176 utf8_isInvalid3(const ENCODING *enc, const char *p) { in utf8_isInvalid3() 182 utf8_isInvalid4(const ENCODING *enc, const char *p) { in utf8_isInvalid4() 188 ENCODING enc; 191 int(PTRFASTCALL *byteType)(const ENCODING *, const char *); [all …]
|
/freebsd/contrib/llvm-project/libunwind/src/ |
H A D | CompactUnwinder.hpp | 71 _LIBUNWIND_ABORT("invalid compact unwind encoding"); in stepWithCompactEncoding() 106 _LIBUNWIND_DEBUG_LOG("bad register for EBP frame, encoding=%08X for " in stepWithCompactEncodingEBPFrame() 109 _LIBUNWIND_ABORT("invalid compact unwind encoding"); in stepWithCompactEncodingEBPFrame() 120 compact_unwind_encoding_t encoding, uint32_t functionStart, in stepWithCompactEncodingFrameless() argument 123 EXTRACT_BITS(encoding, UNWIND_X86_FRAMELESS_STACK_SIZE); in stepWithCompactEncodingFrameless() 125 EXTRACT_BITS(encoding, UNWIND_X86_FRAMELESS_STACK_ADJUST); in stepWithCompactEncodingFrameless() 127 EXTRACT_BITS(encoding, UNWIND_X86_FRAMELESS_STACK_REG_COUNT); in stepWithCompactEncodingFrameless() 129 EXTRACT_BITS(encoding, UNWIND_X86_FRAMELESS_STACK_REG_PERMUTATION); in stepWithCompactEncodingFrameless() 225 _LIBUNWIND_DEBUG_LOG("bad register for frameless, encoding=%08X for " in stepWithCompactEncodingFrameless() 227 encoding, functionStart); in stepWithCompactEncodingFrameless() [all …]
|
/freebsd/contrib/elftoolchain/libelf/ |
H A D | gelf_xlate.c | 36 elf32_xlatetof(Elf_Data *dst, const Elf_Data *src, unsigned int encoding) in elf32_xlatetof() argument 38 return _libelf_xlate(dst, src, encoding, ELFCLASS32, EM_NONE, in elf32_xlatetof() 43 elf64_xlatetof(Elf_Data *dst, const Elf_Data *src, unsigned int encoding) in elf64_xlatetof() argument 45 return _libelf_xlate(dst, src, encoding, ELFCLASS64, EM_NONE, in elf64_xlatetof() 50 elf32_xlatetom(Elf_Data *dst, const Elf_Data *src, unsigned int encoding) in elf32_xlatetom() argument 52 return _libelf_xlate(dst, src, encoding, ELFCLASS32, EM_NONE, in elf32_xlatetom() 57 elf64_xlatetom(Elf_Data *dst, const Elf_Data *src, unsigned int encoding) in elf64_xlatetom() argument 59 return _libelf_xlate(dst, src, encoding, ELFCLASS64, EM_NONE, in elf64_xlatetom() 65 unsigned int encoding) in gelf_xlatetom() argument 68 return (_libelf_xlate(dst, src, encoding, e->e_class, in gelf_xlatetom() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Lanai/MCTargetDesc/ |
H A D | LanaiMCCodeEmitter.cpp | 48 // the binary encoding of instructions/opereands. 51 // binary encoding for an instruction. 56 // getMachineOpValue - Return binary encoding of operand. If the machine 108 // getMachineOpValue - Return binary encoding of operand. If the machine 177 // Get instruction encoding and emit it in encodeInstruction() 188 unsigned Encoding; in getRiMemoryOpValue() local 199 Encoding = (getLanaiRegisterNumbering(Op1.getReg()) << 18); in getRiMemoryOpValue() 204 Encoding |= (Op2.getImm() & 0xffff); in getRiMemoryOpValue() 207 Encoding |= (0x3 << 16); in getRiMemoryOpValue() 209 Encoding | in getRiMemoryOpValue() 220 unsigned Encoding; getRrMemoryOpValue() local 259 unsigned Encoding; getSplsOpValue() local [all...] |
/freebsd/secure/lib/libcrypto/man/man7/ |
H A D | passphrase-encoding.7 | 133 .IX Title "PASSPHRASE-ENCODING 7ossl" 134 .TH PASSPHRASE-ENCODING 7ossl "2023-09-19" "3.0.11" "OpenSSL" 140 passphrase\-encoding 141 \&\- How diverse parts of OpenSSL treat pass phrases character encoding 156 Using the wrong encoding is expected to cause a decryption failure. 159 PKCS#12 is a bit different regarding pass phrase encoding. 173 encoding of the characters, which it stores as a BMPString. 177 for other character sets, such as any \s-1ISO\-8859\-X\s0 encoding other than 188 and \*(L"\s-1LATIN CAPITAL LETTER Z WITH DOT ABOVE\*(R"\s0 in \s-1ISO\-8859\-2\s0 encoding), but wo… 207 other pass phrase encoding may give undefined results. [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
H A D | AsmPrinterDwarf.cpp | 35 static const char *DecodeDWARFEncoding(unsigned Encoding) { in DecodeDWARFEncoding() argument 36 switch (Encoding) { in DecodeDWARFEncoding() 83 return "<unknown encoding>"; in DecodeDWARFEncoding() 87 /// encoding. If verbose assembly output is enabled, we output comments 88 /// describing the encoding. Desc is an optional string saying what the 89 /// encoding is specifying (e.g. "LSDA"). 93 OutStreamer->AddComment(Twine(Desc) + " Encoding = " + in emitEncodingByte() 96 OutStreamer->AddComment(Twine("Encoding = ") + DecodeDWARFEncoding(Val)); in emitEncodingByte() 102 /// GetSizeOfEncodedValue - Return the size of the encoding in bytes. 103 unsigned AsmPrinter::GetSizeOfEncodedValue(unsigned Encoding) const { in GetSizeOfEncodedValue() [all …]
|
/freebsd/cddl/contrib/opensolaris/lib/libctf/common/ |
H A D | ctf.5 | 212 || | integer + integer encoding 344 For more information on the encoding of strings, see the subsection on 454 .Ss Type Encoding 469 The 32 bits that make up the encoding are broken down into six bits 679 start with a type encoding as defined in 680 .Sx Type Encoding , 811 .Sx Type Encoding . 817 .Ss Encoding of Integers 823 which describes their encoding. 830 The integer encoding contains three different pieces of information: [all …]
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | pgp-binary-keys | 70 # 255: partial body encoding 72 # The partial body encoding is similar to HTTP's chunk encoding. It 85 # || | length encoding 109 # Length encoding: 179 # body encoding is only acceptable for the SEIP, Compressed Data, and 184 #>>&0 ubyte x (1 byte length encoding, %d bytes) 192 #>>>&0 ubeshort x (2 byte length encoding, %d bytes) 196 #>>&0 belong x (5 byte length encoding, %d bytes) 199 # Partial body encoding (only valid for container packets). 201 # >>&0 ubyte <255 partial body encoding [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/ |
H A D | MipsMCCodeEmitter.h | 52 // binary encoding for an instruction. 57 // getJumpTargetOpValue - Return binary encoding of the jump 64 // getBranchJumpOpValueMM - Return binary encoding of the microMIPS jump 71 // getUImm5Lsl2Encoding - Return binary encoding of the microMIPS jump 85 // getSImm9AddiuspValue - Return binary encoding of the microMIPS addiusp 91 // getBranchTargetOpValue - Return binary encoding of the branch 98 // getBranchTargetOpValue1SImm16 - Return binary encoding of the branch 105 // getBranchTargetOpValueMMR6 - Return binary encoding of the branch 112 // getBranchTargetOpValueLsl2MMR6 - Return binary encoding of the branch 119 // getBranchTarget7OpValue - Return binary encoding o [all...] |
/freebsd/contrib/llvm-project/llvm/include/llvm/Bitstream/ |
H A D | BitCodes.h | 31 /// 2. It could be an encoding specification ("this operand encoded like so"). 34 uint64_t Val; // A literal value or data for an encoding. 36 unsigned Enc : 3; // The encoding to use. 38 enum Encoding { enum 41 Array = 3, // A sequence of fields, next field species elt encoding. 51 explicit BitCodeAbbrevOp(Encoding E, uint64_t Data = 0) 60 // Accessors for encoding info. 61 Encoding getEncoding() const { assert(isEncoding()); return (Encoding)Enc; } in getEncoding() 68 static bool hasEncodingData(Encoding E) { in hasEncodingData() 78 report_fatal_error("Invalid encoding"); in hasEncodingData() [all …]
|
/freebsd/contrib/libcxxrt/ |
H A D | dwarf_eh.h | 57 /// 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_t *data) in read_value() argument 220 enum dwarf_data_encoding type = get_encoding(encoding); in read_value() [all …]
|
/freebsd/contrib/llvm-project/lldb/tools/compact-unwind/ |
H A D | compact-unwind-dumper.c | 428 uint32_t encoding) { in print_encoding_x86_64() argument 429 int mode = encoding & UNWIND_X86_64_MODE_MASK; in print_encoding_x86_64() 435 EXTRACT_BITS(encoding, UNWIND_X86_64_RBP_FRAME_OFFSET); in print_encoding_x86_64() 438 EXTRACT_BITS(encoding, UNWIND_X86_64_RBP_FRAME_REGISTERS); in print_encoding_x86_64() 470 EXTRACT_BITS(encoding, UNWIND_X86_64_FRAMELESS_STACK_SIZE); in print_encoding_x86_64() 472 EXTRACT_BITS(encoding, UNWIND_X86_64_FRAMELESS_STACK_REG_COUNT); in print_encoding_x86_64() 474 EXTRACT_BITS(encoding, UNWIND_X86_64_FRAMELESS_STACK_REG_PERMUTATION); in print_encoding_x86_64() 478 EXTRACT_BITS(encoding, UNWIND_X86_64_FRAMELESS_STACK_ADJUST); in print_encoding_x86_64() 483 EXTRACT_BITS(encoding, UNWIND_X86_64_FRAMELESS_STACK_SIZE); in print_encoding_x86_64() 630 uint32_t dwarf_offset = encoding & UNWIND_X86_DWARF_SECTION_OFFSET; in print_encoding_x86_64() [all …]
|
/freebsd/contrib/elftoolchain/libelftc/ |
H A D | elftc_demangle.3 | 46 decodes a symbol name encoded according to the type encoding rules 61 specifies the encoding style in use for argument 63 Supported encoding styles are: 66 The encoding style used by compilers adhering to the conventions of the 69 The encoding style by GNU C++ version 2. 71 The encoding style by GNU C++ version 3 and later. 77 encoding scheme from the contents of 87 To decode a name that uses an unknown encoding style use:
|