Home
last modified time | relevance | path

Searched defs:Summary (Results 1 – 25 of 66) sorted by relevance

123

/external/llvm/lib/IR/
DModuleSummaryIndex.cpp32 std::unique_ptr<GlobalValueSummary> Summary = std::move(List.front()); in mergeFrom() local
75 auto *Summary = dyn_cast_or_null<FunctionSummary>(GlobSummary.get()); in collectDefinedFunctionsForModule() local
92 for (auto &Summary : GlobalList.second) { in collectDefinedGVSummariesPerModule() local
105 auto &Summary = SummaryList->second[0]; in getGlobalValueSummary() local
DProfileSummary.cpp117 static bool getSummaryFromMD(MDTuple *MD, SummaryEntryVector &Summary) { in getSummaryFromMD()
185 SummaryEntryVector Summary; in getFromMD() local
/external/swiftshader/third_party/llvm-7.0/llvm/docs/CommandGuide/
Dllvm-pdbutil.rst55 Summary subsection
251 Summary subsection
425 Summary subsection
537 Summary subsection
552 Summary subsection
575 Summary subsection
/external/llvm/include/llvm/ProfileData/
DInstrProf.h809 struct Summary { struct
820 enum SummaryFieldKind { argument
839 uint64_t NumSummaryFields; argument
844 return sizeof(Summary) + NumCutoffEntries * sizeof(Entry) + in getSize() argument
848 const uint64_t *getSummaryDataBase() const { in getSummaryDataBase() argument
851 uint64_t *getSummaryDataBase() { in getSummaryDataBase() argument
856 &getSummaryDataBase()[NumSummaryFields]); in getCutoffEntryBase() argument
862 uint64_t get(SummaryFieldKind K) const { in get() argument
866 void set(SummaryFieldKind K, uint64_t V) { in set() argument
871 void setEntry(uint32_t I, const ProfileSummaryEntry &E) { in setEntry() argument
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ProfileData/
DInstrProf.h914 struct Summary { struct
924 enum SummaryFieldKind { argument
943 uint64_t NumSummaryFields; argument
947 Summary() = delete; argument
948 Summary(uint32_t Size) { memset(this, 0, Size); } in Summary() argument
953 return sizeof(Summary) + NumCutoffEntries * sizeof(Entry) + in getSize() argument
957 const uint64_t *getSummaryDataBase() const { in getSummaryDataBase() argument
961 uint64_t *getSummaryDataBase() { in getSummaryDataBase() argument
967 &getSummaryDataBase()[NumSummaryFields]); in getCutoffEntryBase() argument
974 uint64_t get(SummaryFieldKind K) const { in get() argument
[all …]
DSampleProfWriter.h72 std::unique_ptr<ProfileSummary> Summary; variable
/external/opencensus-java/api/src/main/java/io/opencensus/metrics/export/
DValue.java98 Function<? super Summary, T> summaryFunction, in match()
113 Function<? super Summary, T> summaryFunction, in match()
148 Function<? super Summary, T> summaryFunction, in match()
186 Function<? super Summary, T> summaryFunction, in match()
224 Function<? super Summary, T> summaryFunction, in match()
DSummary.java38 public abstract class Summary { class
39 Summary() {} in Summary() method in Summary
/external/autotest/client/site_tests/platform_ToolchainTests/src/
DREADME.md3 ## Summary section in toolchain-tests
/external/opencensus-java/api/src/main/java/io/opencensus/trace/export/
DRunningSpanStore.java77 public abstract static class Summary { class in RunningSpanStore
79 Summary() {} in Summary() method in RunningSpanStore.Summary
/external/llvm/lib/Transforms/IPO/
DFunctionImport.cpp94 static bool canBeExternallyReferenced(const GlobalValueSummary &Summary) { in canBeExternallyReferenced()
127 const GlobalValueSummary &Summary) { in eligibleForImport()
186 auto *Summary = cast<FunctionSummary>(GVSummary); in selectCallee() local
229 [&](const std::unique_ptr<GlobalValueSummary> &Summary) { in exportGlobalInModule()
237 auto *Summary = FindGlobalSummaryInModule(GUID); in exportGlobalInModule() local
266 const FunctionSummary &Summary, const ModuleSummaryIndex &Index, in computeImportForFunction()
347 auto *Summary = GVSummary.second; in ComputeImportForModule() local
362 auto *Summary = FuncInfo.first; in ComputeImportForModule() local
/external/googletest/googletest/docs/
DXcodeGuide.md91 # Summary # chapter
/external/tensorflow/tensorflow/core/framework/
Dstats_aggregator.h26 class Summary; variable
/external/flatbuffers/docs/source/
DWhitePaper.md39 ### Summary subsection
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DModuleSummaryIndex.cpp28 [](const std::unique_ptr<GlobalValueSummary> &Summary) { in isDSOLocal()
40 auto *Summary = dyn_cast_or_null<FunctionSummary>(GlobSummary.get()); in collectDefinedFunctionsForModule() local
57 for (auto &Summary : GlobalList.second.SummaryList) { in collectDefinedGVSummariesPerModule() local
70 auto &Summary = VI.getSummaryList()[0]; in getGlobalValueSummary() local
DProfileSummary.cpp115 static bool getSummaryFromMD(MDTuple *MD, SummaryEntryVector &Summary) { in getSummaryFromMD()
179 SummaryEntryVector Summary; in getFromMD() local
/external/llvm/docs/
DBigEndianNEON.rst137 Summary section in Considerations
/external/swiftshader/third_party/llvm-7.0/llvm/docs/
DBigEndianNEON.rst137 Summary section in Considerations
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DModuleSummaryAnalysis.cpp415 for (auto &Summary : VI.getSummaryList()) in setLiveRoot() local
474 std::unique_ptr<FunctionSummary> Summary = in buildModuleSummaryIndex() local
490 std::unique_ptr<GlobalVarSummary> Summary = in buildModuleSummaryIndex() local
534 auto *Summary = Index.getGlobalValueSummary(*V); in buildModuleSummaryIndex() local
560 auto &Summary = GlobalList.second.SummaryList[0]; in buildModuleSummaryIndex() local
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-cov/
DCoverageSummaryInfo.cpp62 FunctionCoverageSummary Summary(Name); in get() local
/external/iperf3/
DREADME.md4 Summary section in iperf3: A TCP, UDP, and SCTP network bandwidth measurement tool
/external/libcxx/docs/DesignDocs/
DFileTimeType.rst370 Summary chapter
/external/llvm/unittests/ProfileData/
DSampleProfTest.cpp114 auto VerifySummary = [](ProfileSummary &Summary) mutable { in testRoundTrip()
142 ProfileSummary &Summary = Reader->getSummary(); in testRoundTrip() local
/external/llvm/include/llvm/Analysis/
DProfileSummaryInfo.h44 std::unique_ptr<ProfileSummary> Summary; variable
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/
DFunctionImport.cpp193 auto *Summary = cast<FunctionSummary>(GVSummary->getBaseObject()); in selectCallee() local
247 const FunctionSummary &Summary, const GVSummaryMapTy &DefinedGVSummaries, in computeImportForReferencedGlobals()
276 const FunctionSummary &Summary, const ModuleSummaryIndex &Index, in computeImportForFunction()
456 auto *Summary = std::get<0>(FuncInfo); in ComputeImportForModule() local
591 auto &Summary = GlobalList.second.SummaryList[0]; in ComputeCrossModuleImportForModuleFromIndex() local
683 for (auto &Summary : VI.getSummaryList()) { in computeDeadSymbols() local

123