HomeSort by relevance Sort by last modified time
    Searched refs:Stats (Results 226 - 250 of 269) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/syzkaller/vendor/github.com/golang/protobuf/proto/
lib.go 286 // Stats records allocation details about the protocol buffer encoders
288 type Stats struct {
298 // Set to true to enable stats collection.
301 var stats Stats var
303 // GetStats returns a copy of the global Stats structure.
304 func GetStats() Stats { return stats }
  /cts/tests/tests/media/libmediandkjni/
native_media_encoder_jni.cpp 72 Stats mStats;
  /external/grpc-grpc/src/csharp/Grpc.IntegrationTesting/
Control.cs 113 new pbr::GeneratedClrTypeInfo(typeof(global::Grpc.Testing.ClientStatus), global::Grpc.Testing.ClientStatus.Parser, new[]{ "Stats" }, null, null, null),
118 new pbr::GeneratedClrTypeInfo(typeof(global::Grpc.Testing.ServerStatus), global::Grpc.Testing.ServerStatus.Parser, new[]{ "Stats", "Port", "Cores" }, null, null, null),
    [all...]
  /external/perfetto/src/profiling/memory/
unwinding.cc 256 // Currently, these stats are used to determine whether the application
259 // do not need these stats when heapprofd tears down the tracing session.
262 // this code path, so we can write other stats to the result. This will also
266 SharedRingBuffer::Stats stats = {}; local
270 stats = shmem.GetStats(lock);
272 PERFETTO_ELOG("Failed to log shmem to get stats.");
279 delegate_->PostSocketDisconnected(ds_id, peer_pid, stats);
heapprofd_producer.cc 544 auto* stats = proto->set_stats();
545 stats->set_unwinding_errors(process_state.unwinding_errors);
546 stats->set_heap_samples(process_state.heap_samples);
547 stats->set_map_reparses(process_state.map_reparses);
548 stats->set_total_unwinding_time_us(process_state.total_unwinding_time_us);
549 auto* unwinding_hist = stats->set_unwinding_time_us();
778 SharedRingBuffer::Stats stats) {
780 task_runner_->PostTask([weak_this, ds_id, pid, stats] {
782 weak_this->HandleSocketDisconnected(ds_id, pid, stats);
    [all...]
  /external/skia/tests/
GpuLayerCacheTest.cpp 117 GrResourceCache::Stats stats;
146 resourceCache->getStats(&stats);
153 REPORTER_ASSERT(reporter, 1 == stats.fTotal);
159 REPORTER_ASSERT(reporter, 2 == stats.fTotal);
175 resourceCache->getStats(&stats);
176 REPORTER_ASSERT(reporter, 2 == stats.fTotal);
178 REPORTER_ASSERT(reporter, 1 == stats.fNumPurgeable);
179 REPORTER_ASSERT(reporter, 1 == stats.fNumNonPurgeable);
214 resourceCache->getStats(&stats);
    [all...]
  /external/skqp/tests/
GpuLayerCacheTest.cpp 117 GrResourceCache::Stats stats;
146 resourceCache->getStats(&stats);
153 REPORTER_ASSERT(reporter, 1 == stats.fTotal);
159 REPORTER_ASSERT(reporter, 2 == stats.fTotal);
175 resourceCache->getStats(&stats);
176 REPORTER_ASSERT(reporter, 2 == stats.fTotal);
178 REPORTER_ASSERT(reporter, 1 == stats.fNumPurgeable);
179 REPORTER_ASSERT(reporter, 1 == stats.fNumNonPurgeable);
214 resourceCache->getStats(&stats);
    [all...]
  /external/vulkan-headers/registry/
genvk.py 530 p = pstats.Stats('profile.txt')
  /external/webrtc/talk/media/webrtc/
webrtcvideoengine2.h 491 void FillBandwidthEstimationStats(const webrtc::Call::Stats& stats,
webrtcvideoengine2.cc 569 // Ignore spammy trace messages, mostly from the stats API when we haven't
1207 webrtc::Call::Stats stats = call_->GetStats(); local
2079 webrtc::VideoSendStream::Stats stats; local
2176 webrtc::VideoSendStream::Stats stats = stream_->GetStats(); local
2520 webrtc::VideoReceiveStream::Stats stats = stream_->GetStats(); local
    [all...]
webrtcvoiceengine.cc 2355 webrtc::AudioSendStream::Stats stats = stream.second->GetStats(); local
2380 webrtc::AudioReceiveStream::Stats stats = stream.second->GetStats(); local
    [all...]
  /external/webrtc/webrtc/audio/
audio_receive_stream_unittest.cc 291 AudioReceiveStream::Stats stats = recv_stream.GetStats(); local
292 EXPECT_EQ(kRemoteSsrc, stats.remote_ssrc);
293 EXPECT_EQ(static_cast<int64_t>(kCallStats.bytesReceived), stats.bytes_rcvd);
295 stats.packets_rcvd);
296 EXPECT_EQ(kCallStats.cumulativeLost, stats.packets_lost);
297 EXPECT_EQ(Q8ToFloat(kCallStats.fractionLost), stats.fraction_lost);
298 EXPECT_EQ(std::string(kCodecInst.plname), stats.codec_name);
299 EXPECT_EQ(kCallStats.extendedMax, stats.ext_seqnum);
301 stats.jitter_ms)
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/aec/
aec_core.c 543 static void InitStats(Stats* stats) {
544 stats->instant = kOffsetLevel;
545 stats->average = kOffsetLevel;
546 stats->max = kOffsetLevel;
547 stats->min = kOffsetLevel * (-1);
548 stats->sum = 0;
549 stats->hisum = 0;
550 stats->himean = kOffsetLevel;
551 stats->counter = 0
    [all...]
  /external/webrtc/webrtc/video/
end_to_end_tests.cc 1853 VideoSendStream::Stats stats = send_stream_->GetStats(); local
1861 VideoReceiveStream::Stats stats = receive_streams_[i]->GetStats(); local
2369 VideoSendStream::Stats stats = send_stream_->GetStats(); local
2433 VideoReceiveStream::Stats stats = receive_streams_[i]->GetStats(); local
2492 VideoSendStream::Stats stats = send_stream_->GetStats(); local
2691 VideoReceiveStream::Stats stats = receive_stream_->GetStats(); local
3182 Call::Stats stats = sender_call_->GetStats(); local
    [all...]
send_statistics_proxy.cc 193 VideoSendStream::Stats SendStatisticsProxy::GetStats() {
234 VideoSendStream::StreamStats* stats = GetStatsEntry(ssrc); local
235 if (stats == nullptr)
238 stats->total_bitrate_bps = 0;
239 stats->retransmit_bitrate_bps = 0;
240 stats->height = 0;
241 stats->width = 0;
262 VideoSendStream::StreamStats* stats = GetStatsEntry(ssrc); local
263 if (stats == nullptr)
266 stats->width = encoded_image._encodedWidth
335 VideoSendStream::StreamStats* stats = GetStatsEntry(ssrc); local
345 VideoSendStream::StreamStats* stats = GetStatsEntry(ssrc); local
359 VideoSendStream::StreamStats* stats = GetStatsEntry(ssrc); local
370 VideoSendStream::StreamStats* stats = GetStatsEntry(ssrc); local
381 VideoSendStream::StreamStats* stats = GetStatsEntry(ssrc); local
392 VideoSendStream::StreamStats* stats = GetStatsEntry(ssrc); local
    [all...]
video_receive_stream.cc 170 // Register the channel to receive stats updates.
328 VideoReceiveStream::Stats VideoReceiveStream::GetStats() const {
  /cts/tests/tests/media/src/android/media/cts/
VideoDecoderPerfTest.java 313 log, "decoder stats: decodeTo=" + ((surface == null) ? "buffer" : "surface"),
322 MediaUtils.Stats stats = new MediaUtils.Stats(frameTimeUsDiff); local
323 fps = MediaPerfUtils.addPerformanceStatsToLog(log, stats, message);
    [all...]
  /external/antlr/tool/src/main/java/org/antlr/
Tool.java 33 import org.antlr.runtime.misc.Stats;
503 Stats.writeReport(GrammarReport.GRAMMAR_STATS_FILENAME,
    [all...]
  /external/clang/lib/Driver/
SanitizerArgs.cpp 445 Stats = Args.hasFlag(options::OPT_fsanitize_stats,
638 // The main executable must export the stats runtime.
643 TC.getCompilerRT(Args, "stats")));
680 if (Stats)
681 CmdArgs.push_back(Args.MakeArgString("-fsanitize-stats"));
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ProfileData/Coverage/
CoverageMapping.cpp 722 Stats = LineCoverageStats();
731 Stats = LineCoverageStats(Segments, WrappedSegment, Line);
  /external/harfbuzz_ng/test/shaping/
hb_test_tools.py 249 class Stats:
275 Population is the Stats for population.
276 Self is Stats for sample.
292 # XXX port to Stats, but that would really slow us down here
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
ICUService.java 956 public String stats() { method in class:ICUService
957 ICURWLock.Stats stats = factoryLock.resetStats(); local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
ICUService.java 950 public String stats() { method in class:ICUService
951 ICURWLock.Stats stats = factoryLock.resetStats(); local
    [all...]
  /external/python/cpython3/Lib/
profile.py 316 # stats such as the amount of time added to ct courtesy
340 # We use self.cmd as that string, and the resulting stats look
372 # collect stats from pending stack, including getting final
388 pstats.Stats(self).strip_dirs().sort_stats(sort). \
394 marshal.dump(self.stats, f)
401 self.stats = {}
407 self.stats[func] = cc, nc, tt, ct, callers
454 # low call counts) to have such negative stats, even if the
560 help="Save stats to <outfile>", default=None)
562 help="Sort order when printing to stdout, based on pstats.Stats class"
    [all...]
  /external/vulkan-validation-layers/scripts/
lvl_genvk.py 692 p = pstats.Stats('profile.txt')

Completed in 1552 milliseconds

1 2 3 4 5 6 7 8 91011