/external/opencensus-java/api/src/test/java/io/opencensus/trace/export/ |
NoopSampledSpanStoreTest.java | 44 SampledSpanStore.Summary summary = sampledSpanStore.getSummary(); local 45 assertThat(summary.getPerSpanNameSummary()).isEmpty(); 50 summary = sampledSpanStore.getSummary(); 51 assertThat(summary.getPerSpanNameSummary()) 60 summary = sampledSpanStore.getSummary(); 61 assertThat(summary.getPerSpanNameSummary())
|
/external/opencensus-java/contrib/dropwizard/src/main/java/io/opencensus/contrib/dropwizard/ |
DropWizardMetrics.java | 36 import io.opencensus.metrics.export.Summary; 37 import io.opencensus.metrics.export.Summary.Snapshot; 38 import io.opencensus.metrics.export.Summary.Snapshot.ValueAtPercentile; 220 Point.create(Value.summaryValue(Summary.create(count, 0.0, snapshot)), clock.now()); 228 Type.SUMMARY,
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
CFLSteensAliasAnalysis.cpp | 10 // This file implements a CFL-base, summary-based alias analysis algorithm. It 73 AliasSummary Summary; 83 const AliasSummary &getAliasSummary() const { return Summary; } 142 Summary.RetParamRelations.push_back( 151 Summary.RetParamAttributes.push_back(
|
ProfileSummaryInfo.cpp | 1 //===- ProfileSummaryInfo.cpp - Global profile summary information --------===// 10 // This file contains a pass that provides access to the global profile summary 33 "profile-summary-cutoff-hot", cl::Hidden, cl::init(990000), cl::ZeroOrMore, 38 "profile-summary-cutoff-cold", cl::Hidden, cl::init(999999), cl::ZeroOrMore, 48 "profile-summary-huge-working-set-size-threshold", cl::Hidden, 51 " blocks required to reach the -profile-summary-cutoff-hot" 54 // Find the summary entry for a desired percentile of counts. 62 // detailed summary. 68 // The profile summary metadata may be attached either by the frontend or by 70 // checks if the Summary is null and if so checks if the summary metadata is no [all...] |
/external/tensorflow/tensorflow/contrib/testing/python/framework/ |
util_test.py | 28 """Asserts summary contains the specified tags and values. 31 expected_tags: All tags in summary. 33 summary_proto: Summary to validate. 52 """Create summary based on latest stats. 55 summary_str: Serialized summary. 57 summary_pb2.Summary. 59 ValueError: if tensor is not a valid summary tensor. 61 summary = summary_pb2.Summary() 62 summary.ParseFromString(summary_str [all...] |
/external/tensorflow/tensorflow/python/kernel_tests/ |
summary_v1_audio_op_test.py | 15 """Tests for summary V1 audio op.""" 27 from tensorflow.python.summary import summary 33 summ = summary_pb2.Summary() 61 summ = summary.audio(
|
summary_v1_tensor_op_test.py | 15 """Tests for summary V1 tensor op.""" 30 from tensorflow.python.summary import summary as summary_lib 36 summ = summary_pb2.Summary() 123 summ = summary_pb2.Summary()
|
/external/llvm/tools/llvm-cov/ |
CoverageReport.cpp | 224 FileCoverageSummary Summary(Filename); 227 Summary.addFunction(Function); 230 render(Summary, OS);
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
ModuleSummaryIndex.h | 1 //===- llvm/ModuleSummaryIndex.h - Module Summary Index ---------*- C++ -*-===// 12 /// hold the module index and summary for function importing. 115 /// The GlobalValue corresponding to this summary. This is only used in 117 /// analysis is being run, or when parsing both the IR and the summary 121 /// Summary string representation. This StringRef points to BC module 125 /// is only valid if summary index was loaded from BC file. 131 /// List of global value summary structures for a particular value held 137 /// Map from global value GUID to corresponding summary structures. Use a 147 /// summary. 231 /// Function and variable summary information to aid decisions an [all...] |
/external/opencensus-java/contrib/dropwizard/src/test/java/io/opencensus/contrib/dropwizard/ |
DropWizardMetricsTest.java | 32 import io.opencensus.metrics.export.Summary; 33 import io.opencensus.metrics.export.Summary.Snapshot; 34 import io.opencensus.metrics.export.Summary.Snapshot.ValueAtPercentile; 245 Type.SUMMARY, 253 Summary.create( 274 Type.SUMMARY, 282 Summary.create(
|
/external/llvm/include/llvm/ProfileData/ |
InstrProf.h | 784 // In this version, profile summary data \c IndexedInstrProf::Summary is 806 // Profile summary data recorded in the profile data file in indexed 807 // format. It is introduced in version 4. The summary data follows 809 struct Summary { 838 // The number of summmary fields following the summary header. 840 // The number of Cutoff Entries (Summary::Entry) following summary fields. 844 return sizeof(Summary) + NumCutoffEntries * sizeof(Entry) + [all...] |
InstrProfReader.h | 366 /// Profile summary data. 367 std::unique_ptr<ProfileSummary> Summary; 372 // Read the profile summary. Return a pointer pointing to one byte past the 373 // end of the summary data if it exists or the input \c Cur. 402 uint64_t getMaximumFunctionCount() { return Summary->getMaxFunctionCount(); } 420 ProfileSummary &getSummary() { return *(Summary.get()); }
|
SampleProfWriter.h | 78 /// \brief Profile summary. 79 std::unique_ptr<ProfileSummary> Summary; 81 /// \brief Compute summary for this profile.
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ProfileData/ |
InstrProfReader.h | 396 /// Profile summary data. 397 std::unique_ptr<ProfileSummary> Summary; 401 // Read the profile summary. Return a pointer pointing to one byte past the 402 // end of the summary data if it exists or the input \c Cur. 433 uint64_t getMaximumFunctionCount() { return Summary->getMaxFunctionCount(); } 451 ProfileSummary &getSummary() { return *(Summary.get()); }
|
SampleProfWriter.h | 71 /// Profile summary. 72 std::unique_ptr<ProfileSummary> Summary; 74 /// Compute summary for this profile.
|
SampleProfReader.h | 132 // SUMMARY 144 // Number of entries in detailed summary 146 // A list of detailed summary entry. Each entry consists of 315 /// Return the profile summary. 316 ProfileSummary &getSummary() { return *(Summary.get()); } 335 /// Profile summary information. 336 std::unique_ptr<ProfileSummary> Summary; 338 /// Compute summary for this profile. 408 /// Read profile summary.
|
InstrProf.h | 887 // In this version, profile summary data \c IndexedInstrProf::Summary i [all...] |
/external/tensorflow/tensorflow/core/summary/ |
summary_db_writer.cc | 15 #include "tensorflow/core/summary/summary_db_writer.h" 19 #include "tensorflow/core/summary/summary_converter.h" 23 #include "tensorflow/core/framework/summary.pb.h" [all...] |
/external/libhevc/test/encoder/ |
vid_enc_cfg.txt | 23 --log_dump_level 1 /* 0- [No log/prints] 1- [Bits Generated, POC, Qp, Pic-type] 2- [1 + PSNR + Seq Summary] 3- [2 + SSIM + Frame Summary] */
|
/external/libogg/ |
libogg.spec | 4 Summary: Ogg Bitstream Library. 26 Summary: Ogg Bitstream Library Development
|
/external/llvm/lib/Analysis/ |
CFLGraph.h | 133 /// needs a way of obtaining the summary of other functions when callinsts are 136 /// member function that takes a Function& and returns the corresponding summary 338 auto Summary = AA.getAliasSummary(*Fn); 339 assert(Summary != nullptr); 341 auto &RetParamRelations = Summary->RetParamRelations; 351 auto &RetParamAttributes = Summary->RetParamAttributes;
|
CFLSteensAliasAnalysis.cpp | 10 // This file implements a CFL-base, summary-based alias analysis algorithm. It 71 AliasSummary Summary; 80 const AliasSummary &getAliasSummary() const { return Summary; } 155 Summary.RetParamRelations.push_back( 164 Summary.RetParamAttributes.push_back(
|
/external/linux-kselftest/tools/testing/selftests/rcutorture/bin/ |
parse-console.sh | 127 summary="" 131 summary="$summary Badness: $n_badness" 136 summary="$summary Warnings: $n_warn" 141 summary="$summary Bugs: $n_bugs" 146 summary="$summary Call Traces: $n_calltrace" 151 summary="$summary lockdep: $n_badness [all...] |
/external/tensorflow/tensorflow/core/grappler/costs/ |
virtual_scheduler.h | 282 // Prints out summary of execution (timing, memory usage, etc.) 283 Costs Summary() const; 285 // If metadata is nullptr, then just calls and return Summary(). 286 Costs Summary(RunMetadata* metadata);
|
/external/autotest/site_utils/sponge_lib/ |
sponge_utils_functional_test.py | 51 "Summary": {
|