| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/ |
| H A D | SymbolizableObjectFile.cpp | 131 OffsetNamePair &Export = *I; in addCoffExportSymbols() local 133 uint32_t NextOffset = I != E ? I->Offset : Export.Offset + 1; in addCoffExportSymbols() 134 uint64_t SymbolStart = ImageBase + Export.Offset; in addCoffExportSymbols() 135 uint64_t SymbolSize = NextOffset - Export.Offset; in addCoffExportSymbols() 136 Symbols.push_back({SymbolStart, SymbolSize, Export.Name, 0}); in addCoffExportSymbols()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/ |
| H A D | WasmYAML.h | 60 struct Export { struct 366 std::vector<Export> Exports; 432 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::Export) in LLVM_YAML_IS_SEQUENCE_VECTOR() 470 template <> struct MappingTraits<WasmYAML::Export> { in LLVM_YAML_IS_SEQUENCE_VECTOR() 471 static void mapping(IO &IO, WasmYAML::Export &Export); in LLVM_YAML_IS_SEQUENCE_VECTOR()
|
| /freebsd/contrib/llvm-project/lld/COFF/ |
| H A D | SymbolTable.cpp | 1164 case ExportSource::Export: in exportSourceName() 1179 for (Export &e : exports) { in fixupExports() 1186 for (Export &e : exports) { in fixupExports() 1215 for (Export &e : exports) { in fixupExports() 1224 DenseMap<StringRef, std::pair<Export *, unsigned>> map(exports.size()); in fixupExports() 1225 std::vector<Export> v; in fixupExports() 1226 for (Export &e : exports) { in fixupExports() 1234 Export *existing = pair.first->second.first; in fixupExports() 1257 llvm::sort(exports, [](const Export &a, const Export &b) { in fixupExports() 1265 for (Export &e : exports) in assignExportOrdinals() [all …]
|
| H A D | Config.h | 49 Export, enumerator 56 struct Export { struct 78 bool operator==(const Export &e) const { argument
|
| H A D | MinGW.cpp | 184 const std::vector<Export> &exports) { in writeDefFile() 192 for (const Export &e : exports) { in writeDefFile()
|
| H A D | MinGW.h | 49 const std::vector<Export> &exports);
|
| /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 | 57 Export, ///< Export information to summary. enumerator
|
| /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/Object/ |
| H A D | COFFImportFile.cpp | 690 const COFFShortExport *Export; in writeImportLibrary() member 743 D.Export = &E; in writeImportLibrary() 778 auto It = RegularImports.find(D.Export->ImportName); in writeImportLibrary() 787 Members.push_back(OF.createShortImport(D.Name, D.Export->Ordinal, in writeImportLibrary() 789 D.Export->ImportName, M)); in writeImportLibrary()
|
| /freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
| H A D | WasmYAML.cpp | 415 void MappingTraits<WasmYAML::Export>::mapping(IO &IO, in mapping() 416 WasmYAML::Export &Export) { in mapping() argument 417 IO.mapRequired("Name", Export.Name); in mapping() 418 IO.mapRequired("Kind", Export.Kind); in mapping() 419 IO.mapRequired("Index", Export.Index); in mapping()
|
| H A D | WasmEmitter.cpp | 439 for (const WasmYAML::Export &Export : Section.Exports) { in writeSectionContent() local 440 writeStringRef(Export.Name, OS); in writeSectionContent() 441 writeUint8(OS, Export.Kind); in writeSectionContent() 442 encodeULEB128(Export.Index, OS); in writeSectionContent()
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-cov/ |
| H A D | CoverageExporterJson.cpp | 341 auto Export = json::Object( in renderRoot() local 345 Export["functions"] = renderFunctions(Coverage.getCoveredFunctions()); in renderRoot() 347 auto ExportArray = json::Array({std::move(Export)}); in renderRoot()
|
| /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/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/libcbor/ |
| H A D | BUILD | 29 # Export the .a and .h files for cbor rule, below.
|
| /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/crypto/krb5/src/ccapi/common/win/ |
| H A D | ccs_request.Acf | 7 * Export of this software from the United States of America may
|
| H A D | ccs_reply.Acf | 7 * Export of this software from the United States of America may
|
| /freebsd/crypto/krb5/src/config/ |
| H A D | rm.bat | 14 Rem Export of this software from the United States of America may
|
| /freebsd/contrib/llvm-project/clang/lib/Lex/ |
| H A D | DependencyDirectivesScanner.cpp | 699 bool Export = false; in lexModule() local 701 Export = true; in lexModule() 752 Kind = Export ? cxx_export_module_decl : cxx_module_decl; in lexModule() 754 Kind = Export ? cxx_export_import_decl : cxx_import_decl; in lexModule()
|