/freebsd/contrib/llvm-project/lld/COFF/ |
H A D | DriverUtils.cpp | 566 Export LinkerDriver::parseExport(StringRef arg) { in parseExport() 567 Export e; in parseExport() 568 e.source = ExportSource::Export; in parseExport() 661 case ExportSource::Export: in exportSourceName() 676 for (Export &e : ctx.config.exports) { in fixupExports() 683 for (Export &e : ctx.config.exports) { in fixupExports() 712 for (Export &e : ctx.config.exports) { in fixupExports() 721 DenseMap<StringRef, std::pair<Export *, unsigned>> map( in fixupExports() 723 std::vector<Export> v; in fixupExports() 724 for (Export &e : ctx.config.exports) { in fixupExports() [all …]
|
H A D | Config.h | 47 Export, enumerator 54 struct Export { struct 76 bool operator==(const Export &e) const { argument 162 std::vector<Export> exports;
|
H A D | MinGW.cpp | 174 const std::vector<Export> &exports) { in writeDefFile() 182 for (const Export &e : exports) { in writeDefFile()
|
H A D | MinGW.h | 48 void writeDefFile(StringRef name, const std::vector<Export> &exports);
|
H A D | DLL.cpp | 609 for (const Export &e : ctx.config.exports) { in writeTo() 657 for (const Export &e : ctx.config.exports) { in writeTo() 851 for (Export &e : ctx.config.exports) { in EdataContents() 862 for (Export &e : ctx.config.exports) in EdataContents() 867 for (Export &e : ctx.config.exports) { in EdataContents()
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/ |
H A D | SymbolizableObjectFile.cpp | 132 OffsetNamePair &Export = *I; in addCoffExportSymbols() local 134 uint32_t NextOffset = I != E ? I->Offset : Export.Offset + 1; in addCoffExportSymbols() 135 uint64_t SymbolStart = ImageBase + Export.Offset; in addCoffExportSymbols() 136 uint64_t SymbolSize = NextOffset - Export.Offset; in addCoffExportSymbols() 137 Symbols.push_back({SymbolStart, SymbolSize, Export.Name, 0}); in addCoffExportSymbols()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/ |
H A D | WasmYAML.h | 59 struct Export { struct 364 std::vector<Export> Exports; 430 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::Export) in LLVM_YAML_IS_SEQUENCE_VECTOR() 468 template <> struct MappingTraits<WasmYAML::Export> { in LLVM_YAML_IS_SEQUENCE_VECTOR() 469 static void mapping(IO &IO, WasmYAML::Export &Export); in LLVM_YAML_IS_SEQUENCE_VECTOR()
|
/freebsd/contrib/ofed/libirdma/ |
H A D | libirdma.map | 1 /* Export symbols should be added below according to
|
/freebsd/crypto/heimdal/lib/asn1/ |
H A D | version-script.map | 1 # Export everything, but put a tag on is so that we make ourself incompatible with older versions
|
/freebsd/contrib/ofed/libmlx5/ |
H A D | libmlx5.map | 1 /* Export symbols should be added below according to
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/ |
H A D | IPO.h | 55 Export, ///< Export information to summary. 59 Export, ///< Export information to summary. global() enumerator
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/ |
H A D | CoverageExporterJson.cpp | 339 auto Export = json::Object( in renderRoot() local 343 Export["functions"] = renderFunctions(Coverage.getCoveredFunctions()); in renderRoot() 345 auto ExportArray = json::Array({std::move(Export)}); in renderRoot()
|
/freebsd/contrib/llvm-project/llvm/lib/Object/ |
H A D | COFFImportFile.cpp | 688 const COFFShortExport *Export; in writeImportLibrary() member 741 D.Export = &E; in writeImportLibrary() 769 auto It = RegularImports.find(D.Export->ImportName); in writeImportLibrary() 778 Members.push_back(OF.createShortImport(D.Name, D.Export->Ordinal, in writeImportLibrary() 780 D.Export->ImportName, M)); in writeImportLibrary()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/TraceExporter/ctf/ |
H A D | TraceExporterCTFOptions.td | 7 Desc<"Export the trace for the specified thread index. Otherwise, the "
|
H A D | CommandObjectThreadTraceExportCTF.cpp | 88 return htr.Export(m_options.m_file); in DoExecute()
|
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
H A D | WasmYAML.cpp | 413 void MappingTraits<WasmYAML::Export>::mapping(IO &IO, in mapping() 414 WasmYAML::Export &Export) { in mapping() argument 415 IO.mapRequired("Name", Export.Name); in mapping() 416 IO.mapRequired("Kind", Export.Kind); in mapping() 417 IO.mapRequired("Index", Export.Index); in mapping()
|
H A D | WasmEmitter.cpp | 431 for (const WasmYAML::Export &Export : Section.Exports) { in writeSectionContent() local 432 writeStringRef(Export.Name, OS); in writeSectionContent() 433 writeUint8(OS, Export.Kind); in writeSectionContent() 434 encodeULEB128(Export.Index, OS); in writeSectionContent()
|
/freebsd/crypto/openssl/doc/internal/man7/ |
H A D | EVP_PKEY.pod | 24 explained further down, in L</Export cache for provider operations>), 93 in L</Export cache for provider operations>. 104 =head2 Export cache for provider operations 169 Export the internal origin key to the provider, using the appropriate
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/ |
H A D | SymbolRecordMapping.cpp | 165 Error SymbolRecordMapping::visitKnownRecord(CVSymbol &CVR, ExportSym &Export) { in visitKnownRecord() argument 167 error(IO.mapInteger(Export.Ordinal)); in visitKnownRecord() 168 error(IO.mapEnum(Export.Flags)); in visitKnownRecord() 169 error(IO.mapStringZ(Export.Name)); in visitKnownRecord()
|
H A D | SymbolDumper.cpp | 228 Error CVSymbolDumperImpl::visitKnownRecord(CVSymbol &CVR, ExportSym &Export) { in visitKnownRecord() argument 229 W.printNumber("Ordinal", Export.Ordinal); in visitKnownRecord() 230 W.printFlags("Flags", uint16_t(Export.Flags), getExportSymFlagNames()); in visitKnownRecord() 231 W.printString("Name", Export.Name); in visitKnownRecord()
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | SemaInternal.h | 55 if (auto *Export = D->getAttr<DLLExportAttr>()) in getDLLAttr() local 56 return Export; in getDLLAttr()
|
/freebsd/contrib/llvm-project/clang/lib/Lex/ |
H A D | DependencyDirectivesScanner.cpp | 643 bool Export = false; in lexModule() local 645 Export = true; in lexModule() 689 Kind = Export ? cxx_export_module_decl : cxx_module_decl; in lexModule() 691 Kind = Export ? cxx_export_import_decl : cxx_import_decl; in lexModule()
|
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | WasmObjectWriter.cpp | 989 for (const wasm::WasmExport &Export : Exports) { in writeExportSection() local 990 writeString(Export.Name); in writeExportSection() 991 W->OS << char(Export.Kind); in writeExportSection() 992 encodeULEB128(Export.Index, W->OS); in writeExportSection() 1618 wasm::WasmExport Export; in writeOneObject() 1619 Export.Name = WS.getExportName(); in writeOneObject() 1620 Export.Kind = wasm::WASM_EXTERNAL_FUNCTION; in writeOneObject() 1621 Export.Index = Index; in writeOneObject() 1622 Exports.push_back(Export); in writeOneObject() 1600 wasm::WasmExport Export; writeOneObject() local
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTCommon.cpp | 308 case Decl::Export: in getDefinitiveDeclContext() 423 case Decl::Export: in isRedeclarableDeclKind()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/TraceExporter/common/ |
H A D | TraceHTR.h | 328 llvm::Error Export(std::string outfile);
|