/external/swiftshader/third_party/LLVM/lib/Support/ |
D | Statistic.cpp | 50 std::vector<const Statistic*> Stats; member in __anonf911fa9f0111::StatisticInfo 57 Stats.push_back(S); in addStatistic() 109 StatisticInfo &Stats = *StatInfo; in PrintStatistics() local 113 for (size_t i = 0, e = Stats.Stats.size(); i != e; ++i) { in PrintStatistics() 115 (unsigned)utostr(Stats.Stats[i]->getValue()).size()); in PrintStatistics() 117 (unsigned)std::strlen(Stats.Stats[i]->getName())); in PrintStatistics() 121 std::stable_sort(Stats.Stats.begin(), Stats.Stats.end(), NameCompare()); in PrintStatistics() 129 for (size_t i = 0, e = Stats.Stats.size(); i != e; ++i) { in PrintStatistics() 130 std::string CountStr = utostr(Stats.Stats[i]->getValue()); in PrintStatistics() 132 << CountStr << " " << Stats.Stats[i]->getName() in PrintStatistics() [all …]
|
/external/llvm/lib/Support/ |
D | Statistic.cpp | 54 std::vector<const Statistic*> Stats; member in __anon928f32f30111::StatisticInfo 65 Stats.push_back(S); in addStatistic() 106 std::stable_sort(Stats.begin(), Stats.end(), in sort() 119 StatisticInfo &Stats = *StatInfo; in PrintStatistics() local 123 for (size_t i = 0, e = Stats.Stats.size(); i != e; ++i) { in PrintStatistics() 125 (unsigned)utostr(Stats.Stats[i]->getValue()).size()); in PrintStatistics() 127 (unsigned)std::strlen(Stats.Stats[i]->getDebugType())); in PrintStatistics() 130 Stats.sort(); in PrintStatistics() 138 for (size_t i = 0, e = Stats.Stats.size(); i != e; ++i) in PrintStatistics() 140 MaxValLen, Stats.Stats[i]->getValue(), in PrintStatistics() [all …]
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | ICURWLock.java | 42 private Stats stats = null; 47 public final static class Stats { class in ICURWLock 73 private Stats() { in Stats() method in ICURWLock.Stats 76 private Stats(int rc, int mrc, int wrc, int wc, int wwc) { in Stats() method in ICURWLock.Stats 84 private Stats(Stats rhs) { in Stats() method in ICURWLock.Stats 104 public synchronized Stats resetStats() { in resetStats() 105 Stats result = stats; in resetStats() 106 stats = new Stats(); in resetStats() 113 public synchronized Stats clearStats() { in clearStats() 114 Stats result = stats; in clearStats() [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | ICURWLock.java | 44 private Stats stats = null; 49 public final static class Stats { class in ICURWLock 75 private Stats() { in Stats() method in ICURWLock.Stats 78 private Stats(int rc, int mrc, int wrc, int wc, int wwc) { in Stats() method in ICURWLock.Stats 86 private Stats(Stats rhs) { in Stats() method in ICURWLock.Stats 106 public synchronized Stats resetStats() { in resetStats() 107 Stats result = stats; in resetStats() 108 stats = new Stats(); in resetStats() 115 public synchronized Stats clearStats() { in clearStats() 116 Stats result = stats; in clearStats() [all …]
|
/external/swiftshader/third_party/LLVM/tools/llvm-bcanalyzer/ |
D | llvm-bcanalyzer.cpp | 556 const PerBlockIDStats &Stats = I->second; in AnalyzeBitcode() local 557 errs() << " Num Instances: " << Stats.NumInstances << "\n"; in AnalyzeBitcode() 559 PrintSize(Stats.NumBits); in AnalyzeBitcode() 561 double pct = (Stats.NumBits * 100.0) / BufferSizeBits; in AnalyzeBitcode() 563 if (Stats.NumInstances > 1) { in AnalyzeBitcode() 565 PrintSize(Stats.NumBits/(double)Stats.NumInstances); in AnalyzeBitcode() 567 errs() << " Tot/Avg SubBlocks: " << Stats.NumSubBlocks << "/" in AnalyzeBitcode() 568 << Stats.NumSubBlocks/(double)Stats.NumInstances << "\n"; in AnalyzeBitcode() 569 errs() << " Tot/Avg Abbrevs: " << Stats.NumAbbrevs << "/" in AnalyzeBitcode() 570 << Stats.NumAbbrevs/(double)Stats.NumInstances << "\n"; in AnalyzeBitcode() [all …]
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
D | ShadowStatFs.java | 15 private static final Stats DEFAULT_STATS = new Stats(0, 0, 0); 16 private static Map<String, Stats> stats = new HashMap<String, Stats>(); 17 private Stats stat; 56 stats.put(path, new Stats(blockCount, freeBlocks, availableBlocks)); in registerStats() 63 private static class Stats { class in ShadowStatFs 64 Stats(int blockCount, int freeBlocks, int availableBlocks) { in Stats() method in ShadowStatFs.Stats
|
/external/webrtc/talk/media/webrtc/ |
D | fakewebrtccall.h | 61 void SetStats(const webrtc::AudioSendStream::Stats& stats); 76 webrtc::AudioSendStream::Stats GetStats() const override; 80 webrtc::AudioSendStream::Stats stats_; 89 void SetStats(const webrtc::AudioReceiveStream::Stats& stats); 108 webrtc::AudioReceiveStream::Stats GetStats() const override; 112 webrtc::AudioReceiveStream::Stats stats_; 134 void SetStats(const webrtc::VideoSendStream::Stats& stats); 148 webrtc::VideoSendStream::Stats GetStats() override; 163 webrtc::VideoSendStream::Stats stats_; 177 void SetStats(const webrtc::VideoReceiveStream::Stats& stats); [all …]
|
D | fakewebrtccall.cc | 50 const webrtc::AudioSendStream::Stats& stats) { in SetStats() 67 webrtc::AudioSendStream::Stats FakeAudioSendStream::GetStats() const { in GetStats() 83 const webrtc::AudioReceiveStream::Stats& stats) { in SetStats() 91 webrtc::AudioReceiveStream::Stats FakeAudioReceiveStream::GetStats() const { in GetStats() 171 const webrtc::VideoSendStream::Stats& stats) { in SetStats() 175 webrtc::VideoSendStream::Stats FakeVideoSendStream::GetStats() { in GetStats() 228 webrtc::VideoReceiveStream::Stats FakeVideoReceiveStream::GetStats() const { in GetStats() 241 const webrtc::VideoReceiveStream::Stats& stats) { in SetStats() 415 void FakeCall::SetStats(const webrtc::Call::Stats& stats) { in SetStats() 427 webrtc::Call::Stats FakeCall::GetStats() const { in GetStats()
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowStatFs.java | 21 private static final Stats DEFAULT_STATS = new Stats(0, 0, 0); 22 private static Map<String, Stats> stats = new HashMap<String, Stats>(); 23 private Stats stat; 117 stats.put(path, new Stats(blockCount, freeBlocks, availableBlocks)); in registerStats() 125 private static class Stats { class in ShadowStatFs 126 Stats(int blockCount, int freeBlocks, int availableBlocks) { in Stats() method in ShadowStatFs.Stats
|
/external/lisa/libs/utils/ |
D | results.py | 137 'LITTLE' : Stats(self.little).get(), 138 'big' : Stats(self.big).get(), 139 'Total' : Stats(self.total).get() 186 class Stats(object): class 194 std = Stats.stdev(data) 195 c99 = Stats.ci99(data, std) 279 'slack_pct' : Stats(run.slack_pct).get(), 280 'perf_avg' : Stats(run.perf_avg).get(), 281 'edp1' : Stats(run.edp1).get(), 282 'edp2' : Stats(run.edp2).get(), [all …]
|
/external/llvm/tools/llvm-bcanalyzer/ |
D | llvm-bcanalyzer.cpp | 841 const PerBlockIDStats &Stats = I->second; in AnalyzeBitcode() local 842 outs() << " Num Instances: " << Stats.NumInstances << "\n"; in AnalyzeBitcode() 844 PrintSize(Stats.NumBits); in AnalyzeBitcode() 846 double pct = (Stats.NumBits * 100.0) / BufferSizeBits; in AnalyzeBitcode() 848 if (Stats.NumInstances > 1) { in AnalyzeBitcode() 850 PrintSize(Stats.NumBits/(double)Stats.NumInstances); in AnalyzeBitcode() 852 outs() << " Tot/Avg SubBlocks: " << Stats.NumSubBlocks << "/" in AnalyzeBitcode() 853 << Stats.NumSubBlocks/(double)Stats.NumInstances << "\n"; in AnalyzeBitcode() 854 outs() << " Tot/Avg Abbrevs: " << Stats.NumAbbrevs << "/" in AnalyzeBitcode() 855 << Stats.NumAbbrevs/(double)Stats.NumInstances << "\n"; in AnalyzeBitcode() [all …]
|
/external/webrtc/webrtc/modules/audio_processing/aec/ |
D | aec_core.h | 42 typedef struct Stats { struct 52 } Stats; typedef 94 Stats* erl, 95 Stats* erle, 96 Stats* a_nlp);
|
D | aec_core_internal.h | 119 Stats erl; 120 Stats erle; 121 Stats aNlp; 122 Stats rerl;
|
/external/tensorflow/tensorflow/compiler/aot/ |
D | benchmark.h | 48 struct Stats { struct 52 Stats() : total_us(0) { per_iter_us.reserve(5000); } in Stats() argument 57 void DumpStatsToStdout(const Stats& stats); 64 void Benchmark(const Options& options, const BenchmarkFn& fn, Stats* stats);
|
D | benchmark_test.cc | 33 Stats stats1; in TEST() 38 Stats stats5; in TEST()
|
/external/webrtc/webrtc/modules/video_coding/codecs/test/ |
D | stats.cc | 37 Stats::Stats() {} in Stats() function in webrtc::test::Stats 39 Stats::~Stats() {} in ~Stats() 57 FrameStatistic& Stats::NewFrame(int frame_number) { in NewFrame() 65 void Stats::PrintSummary() { in PrintSummary()
|
D | stats.h | 47 class Stats { 51 Stats(); 52 virtual ~Stats();
|
D | stats_unittest.cc | 25 void SetUp() { stats_ = new Stats(); } in SetUp() 29 Stats* stats_;
|
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/ |
D | bwe_test.h | 121 Stats<double> throughput_kbps, 123 Stats<double> flow_delay_ms, 124 Stats<double> flow_throughput_kbps); 127 Stats<double> throughput_kbps, 128 std::map<int, Stats<double>> flow_delay_ms, 129 std::map<int, Stats<double>> flow_throughput_kbps);
|
D | bwe_test_framework.h | 87 template<typename T> class Stats { 89 Stats() in Stats() function 245 Stats<double> GetBitrateStats() const; 250 Stats<double> packets_per_second_stats_; 251 Stats<double> kbps_stats_; 343 Stats<double> GetDelayStats() const; 371 Stats<double> GetDelayStats() const; 372 Stats<double> GetBitrateStats() const; 385 Stats<double> packets_per_second_stats_; 386 Stats<double> kbps_stats_;
|
/external/webrtc/webrtc/video/ |
D | send_statistics_proxy_unittest.cc | 35 expected_ = VideoSendStream::Stats(); in SetUp() 47 void ExpectEqual(VideoSendStream::Stats one, VideoSendStream::Stats other) { in ExpectEqual() 94 VideoSendStream::Stats expected_; 129 VideoSendStream::Stats stats = statistics_proxy_->GetStats(); in TEST_F() 139 VideoSendStream::Stats stats = statistics_proxy_->GetStats(); in TEST_F() 186 VideoSendStream::Stats stats = statistics_proxy_->GetStats(); in TEST_F() 225 VideoSendStream::Stats stats = statistics_proxy_->GetStats(); in TEST_F() 258 VideoSendStream::Stats stats = statistics_proxy_->GetStats(); in TEST_F() 288 VideoSendStream::Stats stats = statistics_proxy_->GetStats(); in TEST_F() 296 VideoSendStream::Stats stats = statistics_proxy_->GetStats(); in TEST_F() [all …]
|
/external/webrtc/webrtc/voice_engine/test/auto_test/ |
D | voe_conference_test.cc | 42 struct Stats { in TEST() struct 43 Stats(int64_t rtt_receiver_1, int64_t rtt_receiver_2, int64_t ntp_delay) in TEST() argument 80 std::queue<Stats> stats_buffer; in TEST() 105 stats_buffer.push(Stats(stats_1.rttMs, stats_2.rttMs, in TEST() 117 Stats stats = stats_buffer.front(); in TEST()
|
/external/python/cpython3/Doc/library/ |
D | profile.rst | 120 The :class:`pstats.Stats` class reads profile results from a file and formats 130 ``-s`` specifies one of the :func:`~pstats.Stats.sort_stats` sort values to sort 133 The :mod:`pstats` module's :class:`~pstats.Stats` class has a variety of methods 137 p = pstats.Stats('restats') 140 The :meth:`~pstats.Stats.strip_dirs` method removed the extraneous path from all 141 the module names. The :meth:`~pstats.Stats.sort_stats` method sorted all the 143 :meth:`~pstats.Stats.print_stats` method printed out all the statistics. You 217 present, then this function automatically creates a :class:`~pstats.Stats` 219 it is passed to this :class:`~pstats.Stats` instance to control how the 254 ps = pstats.Stats(pr, stream=s).sort_stats(sortby) [all …]
|
/external/python/cpython2/Doc/library/ |
D | profile.rst | 143 The :class:`pstats.Stats` class reads profile results from a file and formats 153 ``-s`` specifies one of the :func:`~pstats.Stats.sort_stats` sort values to sort 156 The :mod:`pstats` module's :class:`~pstats.Stats` class has a variety of methods 160 p = pstats.Stats('restats') 163 The :meth:`~pstats.Stats.strip_dirs` method removed the extraneous path from all 164 the module names. The :meth:`~pstats.Stats.sort_stats` method sorted all the 166 :meth:`~pstats.Stats.print_stats` method printed out all the statistics. You 240 present, then this function automatically creates a :class:`~pstats.Stats` 242 it is passed to this :class:`~pstats.Stats` instance to control how the 277 ps = pstats.Stats(pr, stream=s).sort_stats(sortby) [all …]
|
/external/webrtc/webrtc/modules/audio_coding/test/ |
D | Channel.h | 64 int16_t Stats(CodecInst& codecInst, ACMTestPayloadStats& payloadStats); 66 void Stats(uint32_t* numPackets); 68 void Stats(uint8_t* payloadType, uint32_t* payloadLenByte);
|