| /freebsd/contrib/llvm-project/clang/lib/Format/ |
| H A D | ObjCPropertyAttributeOrderFixer.cpp | 88 const auto Ordinal = in sortPropertyAttributes() local 90 if (!Ordinals.insert(Ordinal).second) { in sortPropertyAttributes() 95 if (Ordinal >= Indices.size()) in sortPropertyAttributes() 96 Indices.resize(Ordinal + 1); in sortPropertyAttributes() 97 Indices[Ordinal] = Index++; in sortPropertyAttributes() 110 for (const auto Ordinal : Ordinals) { in sortPropertyAttributes() local 111 const auto Index = Indices[Ordinal]; in sortPropertyAttributes() 128 for (const auto Ordinal : Ordinals) { in sortPropertyAttributes() local 134 const auto &PropertyEntry = PropertyAttributes[Indices[Ordinal]]; in sortPropertyAttributes()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | DependenceGraphBuilder.h | 71 /// Compute ordinal numbers for each instruction and store them in a map for 158 /// Given an instruction \p I return its associated ordinal number. 161 "No ordinal computed for this instruction."); in getOrdinal() 165 /// Given a node \p N return its associated ordinal number. 167 assert(NodeOrdinalMap.contains(&N) && "No ordinal computed for this node."); in getOrdinal() 174 /// Map Types to map instruction/nodes to an ordinal number. 192 /// A mapping from each instruction to an ordinal number. This map is used to 196 /// A mapping from nodes to an ordinal number. This map is used to sort nodes
|
| /freebsd/contrib/file/magic/Magdir/ |
| H A D | msvc | 23 # which is stored ordinal type 0 and ordinal name 0. 147 # ordinal flag; determines form of Entry Ident field. If nonzero (seems to be 1) Entry is ordinal 148 >>>>>>>&0 ubyte !0 ordinal 159 # Entry Ident; 16-bit if ordinal flag != 0 or imported name in count, char string format if ordinal…
|
| /freebsd/sys/dev/bnxt/bnxt_en/ |
| H A D | bnxt_ioctl.h | 61 uint16_t ordinal; member 96 uint16_t ordinal; member 134 uint16_t ordinal; member
|
| H A D | bnxt_hwrm.h | 90 uint16_t *ordinal, uint16_t ext, uint16_t *index, bool use_index, 102 uint16_t type, uint16_t ordinal, uint16_t ext, uint16_t attr, 117 uint16_t ordinal, uint16_t ext);
|
| /freebsd/contrib/llvm-project/lld/MachO/ |
| H A D | ExportTrie.cpp | 60 uint64_t ordinal = 0; member 77 ordinal = dysym->getFile()->ordinal; in ExportInfo() 108 // uleb128 ordinal; 130 size += getULEB128Size(info->ordinal) + 1; // + 1 for the null-terminator in getTerminalSize() 170 buf += encodeULEB128(info->ordinal, buf); in writeTo()
|
| H A D | SyntheticSections.cpp | 368 auto [ordinal, inlineAddend] = in.chainedFixups->getBinding(sym, addend); in writeChainedBind() 369 bind->ordinal = ordinal; in writeChainedBind() 554 // Non-weak bindings need to have their dylib ordinal encoded as well. 559 return dysym.getFile()->ordinal; in ordinalForDylibSymbol() 571 static void encodeDylibOrdinal(int16_t ordinal, raw_svector_ostream &os) { in encodeDylibOrdinal() argument 572 if (ordinal <= 0) { in encodeDylibOrdinal() 574 (ordinal & BIND_IMMEDIATE_MASK)); in encodeDylibOrdinal() 575 } else if (ordinal <= BIND_IMMEDIATE_MASK) { in encodeDylibOrdinal() 576 os << static_cast<uint8_t>(BIND_OPCODE_SET_DYLIB_ORDINAL_IMM | ordinal); in encodeDylibOrdinal() 579 encodeULEB128(ordinal, os); in encodeDylibOrdinal() [all …]
|
| H A D | Writer.cpp | 878 // library ordinal computation code in ld64. in createLoadCommands() 893 dylibFile->ordinal = BIND_SPECIAL_DYLIB_MAIN_EXECUTABLE; in createLoadCommands() 915 // same ordinal. in createLoadCommands() 933 int64_t &ordinal = ordinalForInstallName[dylibFile->installName]; in createLoadCommands() local 934 if (ordinal) { in createLoadCommands() 935 dylibFile->ordinal = ordinal; in createLoadCommands() 939 ordinal = dylibFile->ordinal = dylibOrdinal++; in createLoadCommands()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
| H A D | COFF.h | 532 /// the ordinal to import from the target DLL, or a name to lookup and import 540 /// Is this entry specified by ordinal, or name? 543 /// Get the ordinal value of this entry. isOrdinal must be true. 545 assert(isOrdinal() && "ILT entry is not an ordinal!"); in getOrdinal() 549 /// Set the ordinal value and set isOrdinal to true. 741 /// Import is by ordinal. This indicates that the value in the Ordinal/Hint 742 /// field of the import header is the import's ordinal. If this constant is 743 /// not specified, then the Ordinal/Hint field should always be interpreted
|
| /freebsd/contrib/llvm-project/lld/COFF/ |
| H A D | DLL.cpp | 84 // This chunk represent import-by-ordinal symbols. 89 : ordinal(v), ctx(c) { in OrdinalOnlyChunk() 95 // An import-by-ordinal slot has MSB 1 to indicate that in writeTo() 96 // this is import-by-ordinal (and not import-by-name). in writeTo() 98 write64le(buf, (1ULL << 63) | ordinal); in writeTo() 100 write32le(buf, (1ULL << 31) | ordinal); in writeTo() 104 uint16_t ordinal; member in lld::coff::__anon0bfb8df40111::OrdinalOnlyChunk 654 assert(e.ordinal >= baseOrdinal && "Export symbol has invalid ordinal"); in writeTo() 656 uint8_t *p = buf + (e.ordinal - baseOrdinal) * 4; in writeTo() 704 assert(e.ordinal >= baseOrdinal && "Export symbol has invalid ordinal"); in writeTo() [all …]
|
| H A D | Config.h | 62 uint16_t ordinal = 0; member 80 importName == e.importName && ordinal == e.ordinal &&
|
| /freebsd/crypto/openssl/test/radix/ |
| H A D | quic_bindings.c | 734 #define C_BIDI_ID(ordinal) \ argument 735 (((ordinal) << 2) | QUIC_STREAM_INITIATOR_CLIENT | QUIC_STREAM_DIR_BIDI) 736 #define S_BIDI_ID(ordinal) \ argument 737 (((ordinal) << 2) | QUIC_STREAM_INITIATOR_SERVER | QUIC_STREAM_DIR_BIDI) 738 #define C_UNI_ID(ordinal) \ argument 739 (((ordinal) << 2) | QUIC_STREAM_INITIATOR_CLIENT | QUIC_STREAM_DIR_UNI) 740 #define S_UNI_ID(ordinal) \ argument 741 (((ordinal) << 2) | QUIC_STREAM_INITIATOR_SERVER | QUIC_STREAM_DIR_UNI)
|
| /freebsd/sys/contrib/edk2/Include/Library/ |
| H A D | BaseLib.h | 4025 @param StartBit The ordinal of the least significant bit in the bit field. 4027 @param EndBit The ordinal of the most significant bit in the bit field. 4055 @param StartBit The ordinal of the least significant bit in the bit field. 4057 @param EndBit The ordinal of the most significant bit in the bit field. 4088 @param StartBit The ordinal of the least significant bit in the bit field. 4090 @param EndBit The ordinal of the most significant bit in the bit field. 4121 @param StartBit The ordinal of the least significant bit in the bit field. 4123 @param EndBit The ordinal of the most significant bit in the bit field. 4156 @param StartBit The ordinal of the least significant bit in the bit field. 4158 @param EndBit The ordinal of the most significant bit in the bit field. [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
| H A D | COFFImportFile.h | 112 uint16_t Ordinal = 0; member 120 L.Ordinal == R.Ordinal && L.Noname == R.Noname &&
|
| /freebsd/stand/efi/include/amd64/ |
| H A D | pe.h | 573 UINT32 Ordinal; member 579 #define IMAGE_SNAP_BY_ORDINAL(Ordinal) ((Ordinal & IMAGE_ORDINAL_FLAG) != 0) argument 580 #define IMAGE_ORDINAL(Ordinal) (Ordinal & 0xffff) argument
|
| /freebsd/stand/efi/include/i386/ |
| H A D | pe.h | 573 UINT32 Ordinal; member 579 #define IMAGE_SNAP_BY_ORDINAL(Ordinal) ((Ordinal & IMAGE_ORDINAL_FLAG) != 0) argument 580 #define IMAGE_ORDINAL(Ordinal) (Ordinal & 0xffff) argument
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
| H A D | PrettyCompilandDumper.cpp | 193 codeview::ThunkOrdinal Ordinal = Symbol.getThunkOrdinal(); in dump() local 195 if (Ordinal == codeview::ThunkOrdinal::TrampIncremental) { in dump() 206 WithColor(Printer, PDB_ColorItem::Register).get() << Ordinal; in dump()
|
| /freebsd/contrib/llvm-project/lld/docs/ |
| H A D | windows_support.rst | 35 export-by-name and export-by-ordinal are supported. 44 module-definition file (.def). Both export-by-name and export-by-ordinal are
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/ |
| H A D | COFFDump.cpp | 536 uint16_t Ordinal; in printImportTables() local 537 if (Entry.getOrdinal(Ordinal)) in printImportTables() 539 outs() << format(" % 6d\n", Ordinal); in printImportTables() 570 outs() << " Ordinal base: " << OrdinalBase << "\n"; in printExportTable() 571 outs() << " Ordinal RVA Name\n"; in printExportTable() 582 uint32_t Ordinal; in printExportTable() local 583 if (I->getOrdinal(Ordinal)) in printExportTable() 593 outs() << format(" %5d ", Ordinal); in printExportTable() 595 outs() << format(" %5d %# 8x", Ordinal, RVA); in printExportTable()
|
| /freebsd/secure/lib/libcrypto/man/man3/ |
| H A D | SSL_CTX_dane_enable.3 | 113 The \fBord\fR argument specifies a strength ordinal. 114 Algorithms with a larger strength ordinal are considered more secure. 122 with a strength ordinal of \f(CW1\fR and matching type \f(CW\*(C`SHA2\-512(2)\*(C'\fR 123 is mapped to \f(CWEVP_sha512()\fR with a strength ordinal of \f(CW2\fR.
|
| /freebsd/sys/contrib/edk2/Include/IndustryStandard/ |
| H A D | PeImage.h | 617 UINT32 Ordinal; member 623 #define EFI_IMAGE_SNAP_BY_ORDINAL(Ordinal) ((Ordinal & EFI_IMAGE_ORDINAL_FLAG) != 0) argument 624 #define EFI_IMAGE_ORDINAL(Ordinal) (Ordinal & 0xffff) argument
|
| /freebsd/crypto/openssl/doc/man3/ |
| H A D | SSL_CTX_dane_enable.pod | 51 The B<ord> argument specifies a strength ordinal. 52 Algorithms with a larger strength ordinal are considered more secure. 60 with a strength ordinal of C<1> and matching type C<SHA2-512(2)> 61 is mapped to C<EVP_sha512()> with a strength ordinal of C<2>.
|
| /freebsd/contrib/llvm-project/llvm/lib/Object/ |
| H A D | COFFImportFile.cpp | 251 NewArchiveMember createShortImport(StringRef Sym, uint16_t Ordinal, 546 ObjectFactory::createShortImport(StringRef Sym, uint16_t Ordinal, in createShortImport() argument 563 if (Ordinal > 0) in createShortImport() 564 Imp->OrdinalHint = Ordinal; in createShortImport() 774 Members.push_back(OF.createShortImport(Name, E.Ordinal, ImportType, in writeImportLibrary() 787 Members.push_back(OF.createShortImport(D.Name, D.Export->Ordinal, in writeImportLibrary()
|
| H A D | COFFModuleDefinition.cpp | 256 Tok.Value.getAsInteger(10, E.Ordinal); in parseExport() 257 } else if (Tok.Value.drop_front().getAsInteger(10, E.Ordinal)) { in parseExport() 258 // "foo \n @bar" - Not an ordinal modifier at all, but the next in parseExport()
|
| H A D | MachOObjectFile.cpp | 1754 return malformedError("bad library ordinal: " + Twine(LibraryOrdinal) + in checkSymbolTable() 3041 State.Other = readULEB128(State.Current, &error); // dylib ordinal in pushNode() 3043 *E = malformedError("dylib ordinal of re-export " + Twine(error) + in pushNode() 3054 "bad library ordinal: " + Twine((int)State.Other) + " (max " + in pushNode() 3300 int MachOAbstractFixupEntry::ordinal() const { return Ordinal; } in ordinal() function in MachOAbstractFixupEntry 3307 Ordinal = 0; in moveToFirst() 3402 Ordinal = 0; in moveNext() 3440 " has out-of range import ordinal " + in moveNext() 3447 Ordinal = Target.libOrdinal(); in moveNext() 3888 Ordinal = ImmValue; in moveNext() [all …]
|