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

1 2 3 4 5 6 7 891011

  /external/skia/src/gpu/gl/builders/
GrGLShaderStringBuilder.cpp 118 GrGpu::Stats* stats,
130 stats->incShaderCompilations();
  /external/skia/tools/viewer/
SkottieSlide.cpp 21 static void draw_stats_box(SkCanvas* canvas, const skottie::Animation::Builder::Stats& stats) {
36 stats.fJsonSize);
39 stats.fAnimatorCount);
42 stats.fJsonParseTimeMS);
45 stats.fSceneParseTimeMS);
48 stats.fTotalLoadTimeMS);
  /external/skqp/src/gpu/gl/builders/
GrGLShaderStringBuilder.cpp 118 GrGpu::Stats* stats,
130 stats->incShaderCompilations();
  /external/skqp/tools/viewer/
SkottieSlide.cpp 21 static void draw_stats_box(SkCanvas* canvas, const skottie::Animation::Builder::Stats& stats) {
36 stats.fJsonSize);
39 stats.fAnimatorCount);
42 stats.fJsonParseTimeMS);
45 stats.fSceneParseTimeMS);
48 stats.fTotalLoadTimeMS);
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-exegesis/lib/
Analysis.cpp 287 for (const auto &Stats : Cluster.getRepresentative()) {
289 writeMeasurementValue<kEscapeHtml>(OS, Stats.avg());
291 writeMeasurementValue<kEscapeHtml>(OS, Stats.min());
293 writeMeasurementValue<kEscapeHtml>(OS, Stats.max());
  /external/webrtc/webrtc/base/
network_unittest.cc 54 NetworkManager::Stats MergeNetworkList(
58 NetworkManager::Stats stats; local
59 network_manager.MergeNetworkList(list, changed, &stats);
60 return stats;
272 NetworkManager::Stats stats = MergeNetworkList(manager, list, &changed); local
274 EXPECT_EQ(stats.ipv6_network_count, 0);
275 EXPECT_EQ(stats.ipv4_network_count, 1);
286 stats = MergeNetworkList(manager, list, &changed)
372 NetworkManager::Stats stats = local
    [all...]
network.cc 235 NetworkManager::Stats stats; local
236 MergeNetworkList(new_networks, changed, &stats);
241 NetworkManager::Stats* stats) {
270 stats->ipv4_network_count++;
273 stats->ipv6_network_count++;
796 NetworkManager::Stats stats; local
797 MergeNetworkList(list, &changed, &stats);
    [all...]
  /external/webrtc/webrtc/video/
receive_statistics_proxy.cc 75 VideoReceiveStream::Stats ReceiveStatisticsProxy::GetStats() const {
133 // receive stats from one of them.
143 // receive stats from one of them.
  /external/swiftshader/third_party/subzero/src/
IceGlobalContext.cpp 243 auto Stats = getStatsCumulative();
245 Stats->add(TLS->StatsCumulative);
257 Str << "|" << Name << "|" str "|" << Stats[CS_##tag] << "\n";
261 << Stats[CS_NumSpills] + Stats[CS_NumFills] << "\n";
387 // Reset per-function stats being accumulated in TLS.
423 // stats have been fully collected into this thread's TLS.
435 // The Cfg has not been emitted yet, so stats are not ready
731 Str << "Constant pool use stats: count+value+type\n";
    [all...]
  /external/syzkaller/syz-manager/
manager.go 56 stats *Stats
173 stats: new(Stats),
223 executed := mgr.stats.execTotal.get()
224 crashes := mgr.stats.crashes.get()
259 for k, v := range mgr.stats.all() {
299 stats *repro.Stats
365 res, stats, err := repro.Run(crash.Output, mgr.cfg, mgr.reporter, mgr.vmPool, vmIndexes
    [all...]
html.go 59 Stats: mgr.collectStats(),
104 stats := []UIStat{
113 stats = append(stats, UIStat{
125 intStats := convertStats(mgr.stats.all(), secs)
128 stats = append(stats, intStats...)
129 return stats
132 func convertStats(stats map[string]uint64, secs uint64) []UIStat {
134 for k, v := range stats {
    [all...]
hub.go 22 stats: mgr.stats,
37 stats *Stats
139 hc.stats.hubSendProgAdd.add(len(a.Add))
140 hc.stats.hubSendProgDel.add(len(a.Del))
141 hc.stats.hubSendRepro.add(len(a.Repros))
142 hc.stats.hubRecvProg.add(len(r.Progs) - progDropped)
143 hc.stats.hubRecvProgDrop.add(progDropped)
144 hc.stats.hubRecvRepro.add(len(r.Repros) - reproDropped
    [all...]
  /external/webrtc/talk/media/webrtc/
webrtcvideoengine2_unittest.cc 2453 webrtc::VideoSendStream::Stats stats; local
2465 webrtc::VideoSendStream::Stats stats; local
2478 webrtc::VideoSendStream::Stats stats; local
2607 webrtc::VideoSendStream::Stats stats; local
2641 webrtc::VideoSendStream::Stats stats; local
2655 webrtc::VideoSendStream::Stats stats; local
2676 webrtc::VideoReceiveStream::Stats stats; local
2694 webrtc::VideoReceiveStream::Stats stats; local
2720 webrtc::VideoReceiveStream::Stats stats; local
2745 webrtc::Call::Stats stats; local
2758 webrtc::VideoSendStream::Stats stats; local
2921 webrtc::VideoReceiveStream::Stats stats; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
profile.py 346 # stats such as the amount of time added to ct courtesy
370 # We use self.cmd as that string, and the resulting stats look
402 # collect stats from pending stack, including getting final
418 pstats.Stats(self).strip_dirs().sort_stats(sort). \
424 marshal.dump(self.stats, f)
432 self.stats = {}
438 self.stats[func] = cc, nc, tt, ct, callers
485 # low call counts) to have such negative stats, even if the
582 def Stats(*args):
590 help="Save stats to <outfile>", default=None)
    [all...]
  /external/grpc-grpc-java/core/src/main/java/io/grpc/internal/
CensusStatsModule.java 40 import io.opencensus.stats.MeasureMap;
41 import io.opencensus.stats.Stats;
42 import io.opencensus.stats.StatsRecorder;
58 * Provides factories for {@link StreamTracer} that records stats to Census.
87 Stats.getStatsRecorder(),
123 logger.log(Level.FINE, "Failed to parse stats header", e);
150 * Returns the client interceptor that facilitates Census-based stats reporting.
  /external/llvm/lib/DebugInfo/PDB/
PDBExtras.cpp 370 raw_ostream &llvm::pdb::operator<<(raw_ostream &OS, const TagStats &Stats) {
371 for (auto Tag : Stats) {
  /external/python/cpython2/Lib/
profile.py 337 # stats such as the amount of time added to ct courtesy
361 # We use self.cmd as that string, and the resulting stats look
393 # collect stats from pending stack, including getting final
409 pstats.Stats(self).strip_dirs().sort_stats(sort). \
415 marshal.dump(self.stats, f)
423 self.stats = {}
429 self.stats[func] = cc, nc, tt, ct, callers
476 # low call counts) to have such negative stats, even if the
573 def Stats(*args):
581 help="Save stats to <outfile>", default=None
    [all...]
  /external/skia/modules/skottie/src/
Skottie.cpp 268 Animation::Builder::Stats* stats,
275 , fStats(stats)
459 memset(&fStats, 0, sizeof(struct Stats));
  /external/skia/src/gpu/
GrGpu.cpp 405 this->stats()->incNumFinishFlushes();
457 void GrGpu::Stats::dump(SkString* out) {
467 void GrGpu::Stats::dumpKeyValuePairs(SkTArray<SkString>* keys, SkTArray<double>* values) {
  /external/skqp/modules/skottie/src/
Skottie.cpp 216 Animation::Builder::Stats* stats,
223 , fStats(stats)
406 memset(&fStats, 0, sizeof(struct Stats));
  /external/syzkaller/pkg/repro/
repro.go 34 type Stats struct {
49 stats *Stats
61 vmIndexes []int) (*Result, *Stats, error) {
86 stats: new(Stats),
174 return res, ctx.stats, nil
237 ctx.stats.ExtractProgTime = time.Since(start)
406 ctx.stats.MinimizeProgTime = time.Since(start)
431 ctx.stats.SimplifyProgTime = time.Since(start
    [all...]
  /external/webrtc/webrtc/audio/
audio_send_stream_unittest.cc 205 AudioSendStream::Stats stats = send_stream.GetStats(); local
206 EXPECT_EQ(kSsrc, stats.local_ssrc);
207 EXPECT_EQ(static_cast<int64_t>(kCallStats.bytesSent), stats.bytes_sent);
208 EXPECT_EQ(kCallStats.packetsSent, stats.packets_sent);
210 stats.packets_lost);
211 EXPECT_EQ(Q8ToFloat(kReportBlock.fraction_lost), stats.fraction_lost);
212 EXPECT_EQ(std::string(kCodecInst.plname), stats.codec_name);
214 stats.ext_seqnum);
217 stats.jitter_ms)
    [all...]
  /external/webrtc/webrtc/modules/video_coding/codecs/test/
videoprocessor.cc 47 Stats* stats)
54 stats_(stats),
74 assert(stats);
310 // Report stats
  /external/skqp/src/gpu/
GrResourceCache.cpp 729 struct Stats {
740 Stats(const GrResourceCache* cache) {
801 Stats stats(this);
809 stats.update(fNonpurgeableResources[i]);
815 stats.update(fPurgeableQueue.at(i));
822 SkASSERT(stats.fBytes == fBytes);
823 SkASSERT(stats.fBudgetedBytes == fBudgetedBytes);
824 SkASSERT(stats.fBudgetedCount == fBudgetedCount);
834 SkASSERT(stats.fContent == fUniqueHash.count())
    [all...]
  /external/webrtc/webrtc/call/
call.cc 80 Stats GetStats() const override;
494 Call::Stats Call::GetStats() const {
498 Stats stats; local
507 stats.send_bandwidth_bps = send_bandwidth;
508 stats.recv_bandwidth_bps = recv_bandwidth;
509 stats.pacer_delay_ms = congestion_controller_->GetPacerQueuingDelayMs();
516 stats.rtt_ms = rtt_ms;
519 return stats;
594 // We only update these stats if we have send streams, and assume tha
    [all...]

Completed in 812 milliseconds

1 2 3 4 5 6 7 891011