Home
last modified time | relevance | path

Searched refs:Export (Results 1 – 25 of 103) sorted by relevance

12345

/freebsd/contrib/llvm-project/lld/COFF/
H A DDriverUtils.cpp565 Export e; in parseExport()
566 e.source = ExportSource::Export; in parseExport()
664 case ExportSource::Export: in exportSourceName()
679 for (Export &e : ctx.config.exports) { in fixupExports()
686 for (Export &e : ctx.config.exports) { in fixupExports()
695 for (Export &e : ctx.config.exports) { in fixupExports()
706 std::vector<Export> v; in fixupExports()
707 for (Export &e : ctx.config.exports) { in fixupExports()
738 llvm::sort(ctx.config.exports, [](const Export &a, const Export &b) { in fixupExports()
746 for (Export &e : ctx.config.exports) in assignExportOrdinals()
[all …]
H A DConfig.h47 Export, enumerator
54 struct Export { struct
75 bool operator==(const Export &e) const { argument
162 std::vector<Export> exports;
H A DMinGW.cpp175 const std::vector<Export> &exports) { in writeDefFile()
183 for (const Export &e : exports) { in writeDefFile()
H A DMinGW.h48 void writeDefFile(StringRef name, const std::vector<Export> &exports);
H A DDLL.cpp609 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 DSymbolizableObjectFile.cpp132 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 DWasmYAML.h59 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 Dlibirdma.map1 /* Export symbols should be added below according to
/freebsd/crypto/heimdal/lib/asn1/
H A Dversion-script.map1 # Export everything, but put a tag on is so that we make ourself incompatible with older versions
/freebsd/contrib/ofed/libmlx5/
H A Dlibmlx5.map1 /* Export symbols should be added below according to
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/
H A DIPO.h55 Export, ///< Export information to summary. enumerator
/freebsd/contrib/llvm-project/lldb/source/Plugins/TraceExporter/ctf/
H A DTraceExporterCTFOptions.td7 Desc<"Export the trace for the specified thread index. Otherwise, the "
H A DCommandObjectThreadTraceExportCTF.cpp88 return htr.Export(m_options.m_file); in DoExecute()
/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCoverageExporterJson.cpp339 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/ObjectYAML/
H A DWasmYAML.cpp410 void MappingTraits<WasmYAML::Export>::mapping(IO &IO, in mapping()
411 WasmYAML::Export &Export) { in mapping() argument
412 IO.mapRequired("Name", Export.Name); in mapping()
413 IO.mapRequired("Kind", Export.Kind); in mapping()
414 IO.mapRequired("Index", Export.Index); in mapping()
H A DWasmEmitter.cpp431 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 DEVP_PKEY.pod24 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/clang/include/clang/Sema/
H A DSemaInternal.h59 if (auto *Export = D->getAttr<DLLExportAttr>()) in getDLLAttr() local
60 return Export; in getDLLAttr()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DSymbolRecordMapping.cpp165 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 DSymbolDumper.cpp228 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/lib/Lex/
H A DDependencyDirectivesScanner.cpp643 bool Export = false; in lexModule() local
645 Export = true; in lexModule()
678 Kind = Export ? cxx_export_module_decl : cxx_module_decl; in lexModule()
680 Kind = Export ? cxx_export_import_decl : cxx_import_decl; in lexModule()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTCommon.cpp300 case Decl::Export: in getDefinitiveDeclContext()
415 case Decl::Export: in isRedeclarableDeclKind()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DWasmObjectWriter.cpp992 for (const wasm::WasmExport &Export : Exports) { in writeExportSection() local
993 writeString(Export.Name); in writeExportSection()
994 W->OS << char(Export.Kind); in writeExportSection()
995 encodeULEB128(Export.Index, W->OS); in writeExportSection()
1608 wasm::WasmExport Export; in writeOneObject() local
1609 Export.Name = WS.getExportName(); in writeOneObject()
1610 Export.Kind = wasm::WASM_EXTERNAL_FUNCTION; in writeOneObject()
1611 Export.Index = Index; in writeOneObject()
1612 Exports.push_back(Export); in writeOneObject()
/freebsd/contrib/llvm-project/lldb/source/Plugins/TraceExporter/common/
H A DTraceHTR.h328 llvm::Error Export(std::string outfile);
/freebsd/contrib/libcbor/
H A DBazel.md50 # Export the .a and .h files for cbor rule, below.

12345