/external/webrtc/webrtc/call/ |
call_perf_tests.cc | 597 VideoSendStream::Stats stats = send_stream_->GetStats(); local 598 if (stats.substreams.size() > 0) { 599 RTC_DCHECK_EQ(1u, stats.substreams.size()); 601 stats.substreams.begin()->second.total_bitrate_bps / 1000; 617 // Expect bitrate stats to roughly match the max encode bitrate. 651 EXPECT_TRUE(Wait()) << "Timeout while waiting for send-bitrate stats.";
|
/external/webrtc/webrtc/video/ |
video_send_stream.cc | 434 // Clear stats for disabled layers. 454 VideoSendStream::Stats VideoSendStream::GetStats() {
|
video_send_stream_tests.cc | 753 // When the stream is detected again, and the stats show that the stream 793 // have to wait for the stats to change. 798 VideoSendStream::Stats stats = stream_->GetStats(); local 799 if (stats.suspended == false) { 800 // Stats flipped to false. Test is complete. 814 VideoSendStream::Stats stats = stream_->GetStats(); local 815 EXPECT_TRUE(stats.suspended); 998 VideoSendStream::Stats stats = stream_->GetStats(); local 1829 VideoSendStream::Stats stats = send_stream_->GetStats(); local [all...] |
video_quality_test.cc | 254 // Signal stats polling thread if that is still waiting and stop it now, 369 VideoSendStream::Stats stats = send_stream_->GetStats(); local 372 encode_frame_rate_.AddSample(stats.encode_frame_rate); 373 encode_time_ms.AddSample(stats.avg_encode_time_ms); 374 encode_usage_percent.AddSample(stats.encode_usage_percent); 375 media_bitrate_bps.AddSample(stats.media_bitrate_bps); 509 test::Statistics stats, 514 stats.Mean(), 515 stats.StandardDeviation() [all...] |
/external/perfetto/src/trace_processor/ |
trace_storage.h | 35 #include "src/trace_processor/stats.h" 582 struct Stats { 587 using StatsMap = std::array<Stats, stats::kNumKeys>; 755 // Example usage: SetStats(stats::android_log_num_failed, 42); 757 PERFETTO_DCHECK(key < stats::kNumKeys); 758 PERFETTO_DCHECK(stats::kTypes[key] == stats::kSingle); 762 // Example usage: IncrementStats(stats::android_log_num_failed, -1); 764 PERFETTO_DCHECK(key < stats::kNumKeys) [all...] |
proto_trace_parser.cc | 347 context_->storage->IncrementStats(stats::meminfo_unknown_keys); 360 context_->storage->IncrementStats(stats::vmstat_unknown_keys); 371 context_->storage->IncrementStats(stats::invalid_cpu_times); 451 protos::pbzero::ProcessStats::Decoder stats(blob.data, blob.size); 454 for (auto it = stats.processes(); it; ++it) { 477 context_->storage->IncrementStats(stats::proc_stat_unknown_counters); 655 context_->storage->IncrementStats(stats::rss_stat_unknown_keys); 664 context_->storage->IncrementStats(stats::rss_stat_negative_size); [all...] |
/external/syzkaller/syz-fuzzer/ |
fuzzer.go | 39 stats [StatCount]uint64 266 stats := make(map[string]uint64) 268 stats["exec total"] += atomic.SwapUint64(&proc.env.StatExecs, 0) 269 stats["executor restarts"] += atomic.SwapUint64(&proc.env.StatRestarts, 0) 272 v := atomic.SwapUint64(&fuzzer.stats[stat], 0) 273 stats[statNames[stat]] = v 276 if !fuzzer.poll(needCandidates, stats) { 283 func (fuzzer *Fuzzer) poll(needCandidates bool, stats map[string]uint64) bool { 288 Stats: stats, [all...] |
/art/oatdump/ |
oatdump.cc | 42 #include "base/stats.h" 676 os << "OAT FILE STATS:\n"; 802 const Stats& stats, 804 if (std::fabs(stats.Value()) > 0 || !stats.Children().empty()) { 805 double percent = 100.0 * stats.Value() / total; 808 << std::setw(8) << stats.Count() << " " 809 << std::setw(12) << std::fixed << std::setprecision(3) << stats.Value() / KB << "KB " 813 std::map<std::pair<double, std::string>, const Stats&> sorted_children [all...] |
/external/webrtc/webrtc/modules/video_coding/codecs/test/ |
videoprocessor_integrationtest.cc | 110 webrtc::test::Stats stats_; 460 // If we hit another/next update, verify stats for current state and [all...] |
/external/skia/bench/ |
nanobench.cpp | 48 #include "Stats.h" 129 DEFINE_bool(gpuStats, false, "Print GPU stats after each gpu benchmark?"); [all...] |
/external/skqp/bench/ |
nanobench.cpp | 48 #include "Stats.h" 129 DEFINE_bool(gpuStats, false, "Print GPU stats after each gpu benchmark?"); [all...] |
/external/webrtc/talk/media/webrtc/ |
webrtcvoiceengine_unittest.cc | 284 webrtc::AudioSendStream::Stats GetAudioSendStreamStats() const { 285 webrtc::AudioSendStream::Stats stats; local 286 stats.local_ssrc = 12; 287 stats.bytes_sent = 345; 288 stats.packets_sent = 678; 289 stats.packets_lost = 9012; 290 stats.fraction_lost = 34.56f; 291 stats.codec_name = "codec_name_send"; 292 stats.ext_seqnum = 789 311 const auto stats = GetAudioSendStreamStats(); local 333 webrtc::AudioReceiveStream::Stats stats; local 366 const auto stats = GetAudioReceiveStreamStats(); local [all...] |
/external/blktrace/btt/doc/ |
btt.tex | 634 \newpage\section{\label{sec:rstat}Running Stats Files} 668 \caption{\label{fig:rstats}Running Stats} [all...] |
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_allocator.h | 208 // Per-thread stats, live in per-thread cache. 241 // Global stats, used for aggregation and querying. 272 const AllocatorStats *stats = this; local 275 s[i] += stats->Get(AllocatorStat(i)); 276 stats = stats->next_; 277 if (stats == this) 280 // All stats must be non-negative. 438 Printf("Stats: SizeClassAllocator64: %zdM mapped in %zd allocations; " 518 uptr n_allocated, n_freed; // Just stats 1278 } stats; member in class:__sanitizer::LargeMmapAllocator [all...] |
/external/tensorflow/tensorflow/compiler/xla/service/ |
buffer_assignment.cc | 656 string BufferAssignment::Stats::ToString() const { 658 StrAppendFormat(&s, "BufferAssignment stats:\n"); [all...] |
/cts/tests/video/src/android/video/cts/ |
VideoEncoderDecoderTest.java | [all...] |
/external/cldr/tools/java/libs/ |
guava.jar | |
icu4j.jar | |
/external/error_prone/javac/ |
javac-9+181-r4173-1.jar | |