/freebsd/contrib/llvm-project/lld/MachO/ |
H A D | ExportTrie.cpp | 61 uint64_t ordinal = 0; member 78 ordinal = dysym->getFile()->ordinal; in ExportInfo() 131 size += getULEB128Size(info->ordinal) + 1; // + 1 for the null-terminator in getTerminalSize() 171 buf += encodeULEB128(info->ordinal, buf); in writeTo()
|
H A D | SyntheticSections.cpp | 369 auto [ordinal, inlineAddend] = in.chainedFixups->getBinding(sym, addend); in writeChainedBind() 370 bind->ordinal = ordinal; in writeChainedBind() 560 return dysym.getFile()->ordinal; in ordinalForDylibSymbol() 572 static void encodeDylibOrdinal(int16_t ordinal, raw_svector_ostream &os) { in encodeDylibOrdinal() argument 573 if (ordinal <= 0) { in encodeDylibOrdinal() 575 (ordinal & BIND_IMMEDIATE_MASK)); in encodeDylibOrdinal() 576 } else if (ordinal <= BIND_IMMEDIATE_MASK) { in encodeDylibOrdinal() 577 os << static_cast<uint8_t>(BIND_OPCODE_SET_DYLIB_ORDINAL_IMM | ordinal); in encodeDylibOrdinal() 580 encodeULEB128(ordinal, os); in encodeDylibOrdinal() 648 int16_t ordinal = ordinalForSymbol(*sym); in finalizeContents() local [all …]
|
H A D | Writer.cpp | 867 dylibFile->ordinal = BIND_SPECIAL_DYLIB_MAIN_EXECUTABLE; in createLoadCommands() 907 int64_t &ordinal = ordinalForInstallName[dylibFile->installName]; in createLoadCommands() local 908 if (ordinal) { in createLoadCommands() 909 dylibFile->ordinal = ordinal; in createLoadCommands() 913 ordinal = dylibFile->ordinal = dylibOrdinal++; in createLoadCommands()
|
H A D | InputFiles.h | 246 int64_t ordinal = 0; // Ordinal numbering starts from 1, so 0 is a sentinel 239 int64_t ordinal = 0; // Ordinal numbering starts from 1, so 0 is a sentinel global() variable
|
/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 | 88 uint16_t *ordinal, uint16_t ext, uint16_t *index, bool use_index, 100 uint16_t type, uint16_t ordinal, uint16_t ext, uint16_t attr, 115 uint16_t ordinal, uint16_t ext);
|
H A D | bnxt_hwrm.c | 2248 uint16_t *ordinal, uint16_t ext, uint16_t *index, bool use_index, in bnxt_hwrm_nvm_find_dir_entry() argument 2258 MPASS(ordinal); in bnxt_hwrm_nvm_find_dir_entry() 2267 req.dir_ordinal = htole16(*ordinal); in bnxt_hwrm_nvm_find_dir_entry() 2285 *ordinal = le16toh(resp->dir_ordinal); in bnxt_hwrm_nvm_find_dir_entry() 2421 uint16_t type, uint16_t ordinal, uint16_t ext, uint16_t attr, in bnxt_hwrm_nvm_write() argument 2454 req.dir_ordinal = htole16(ordinal); in bnxt_hwrm_nvm_write() 2656 uint16_t ordinal, uint16_t ext) in bnxt_hwrm_nvm_verify_update() argument 2665 req.dir_ordinal = htole16(ordinal); in bnxt_hwrm_nvm_verify_update()
|
H A D | bnxt_sysctl.c | 1105 uint16_t ordinal = BNX_DIR_ORDINAL_FIRST; in bnxt_package_ver_sysctl() local 1110 &ordinal, BNX_DIR_EXT_NONE, &index, false, in bnxt_package_ver_sysctl()
|
/freebsd/contrib/llvm-project/lld/COFF/ |
H A D | DLL.cpp | 89 : ordinal(v), ctx(c) { in OrdinalOnlyChunk() 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 610 assert(e.ordinal >= baseOrdinal && "Export symbol has invalid ordinal"); in writeTo() 612 uint8_t *p = buf + (e.ordinal - baseOrdinal) * 4; in writeTo() 660 assert(e.ordinal >= baseOrdinal && "Export symbol has invalid ordinal"); in writeTo() 662 write16le(buf, e.ordinal - baseOrdinal); in writeTo() 852 baseOrdinal = std::min(baseOrdinal, (unsigned)e.ordinal); in EdataContents() 853 maxOrdinal = std::max(maxOrdinal, (unsigned)e.ordinal); in EdataContents()
|
H A D | Config.h | 60 uint16_t ordinal = 0; member 78 importName == e.importName && ordinal == e.ordinal &&
|
H A D | DriverUtils.cpp | 596 if (e.ordinal == 0) in parseExport() 626 e.ordinal = ord; in parseExport() 677 if (e.ordinal == 0) in fixupExports() 679 if (!ords.insert(e.ordinal).second) in fixupExports() 764 max = std::max(max, (uint32_t)e.ordinal); in assignExportOrdinals() 766 if (e.ordinal == 0) in assignExportOrdinals() 767 e.ordinal = ++max; in assignExportOrdinals()
|
H A D | MinGW.cpp | 184 << "@" << e.ordinal; in writeDefFile()
|
H A D | MapFile.cpp | 327 os << " ordinal name\n\n"; in writeMapFile() 329 os << format(" %7d", e.ordinal) << " " << e.name << "\n"; in writeMapFile()
|
H A D | Driver.cpp | 941 e2.Ordinal = e1.ordinal; in createImportLibrary() 1041 e2.ordinal = e1.Ordinal; in parseModuleDefs()
|
/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/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/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/openmp/runtime/src/ |
H A D | dllexports | 289 # These functions are for testing purposes. There is no need in stable ordinal number: 1271 # No longer need to put ordinal numbers
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
H A D | MachO.h | 225 int ordinal() const; 335 int ordinal() const;
|
/freebsd/crypto/heimdal/doc/ |
H A D | latin1.tex | 12 % feminine ordinal indicator, left angle quotation mark
|
/freebsd/usr.sbin/bhyve/ |
H A D | tpm_intf_crb.c | 172 uint32_t ordinal; member
|
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
H A D | MachO.h | 341 // Flag bits (some overlap with the library ordinal bits). 1122 uint64_t ordinal : 24; 1541 inline void SET_LIBRARY_ORDINAL(uint16_t &n_desc, uint8_t ordinal) { in SET_LIBRARY_ORDINAL() argument 1542 n_desc = (((n_desc)&0x00ff) | (((ordinal)&0xff) << 8)); in SET_LIBRARY_ORDINAL() 1123 uint64_t ordinal : 24; global() member
|
/freebsd/crypto/openssl/crypto/x509/ |
H A D | x509_vfy.c | 2690 unsigned ordinal = DANETLS_NONE; in dane_match() local 2755 ordinal = dane->dctx->mdord[t->mtype]; in dane_match() 2768 ordinal = dane->dctx->mdord[t->mtype]; in dane_match() 2779 if (dane->dctx->mdord[t->mtype] < ordinal) in dane_match()
|
/freebsd/usr.sbin/bsdconfig/share/ |
H A D | strings.subr | 510 # decimal ordinal of the non-alphanumeric character. If $text is missing, data
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-nm/ |
H A D | llvm-nm.cpp | 1445 MachO::SET_LIBRARY_ORDINAL(B.NDesc, Entry.ordinal()); in dumpSymbolsFromDLInfoMachO() 1505 MachO::SET_LIBRARY_ORDINAL(L.NDesc, Entry.ordinal()); in dumpSymbolsFromDLInfoMachO()
|