/external/skia/tests/ |
PathRendererCacheTests.cpp | 63 GrResourceCache::Stats stats; local 64 cache->getStats(&stats); 65 return (stats.fTotal - stats.fScratch) == expected;
|
/external/skqp/tests/ |
PathRendererCacheTests.cpp | 63 GrResourceCache::Stats stats; local 64 cache->getStats(&stats); 65 return (stats.fTotal - stats.fScratch) == expected;
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ProfileData/Coverage/ |
CoverageMapping.h | 640 Line(Line), Segments(), Stats() { 648 const LineCoverageStats &operator*() const { return Stats; } 650 LineCoverageStats &operator*() { return Stats; } 668 LineCoverageStats Stats;
|
/external/webrtc/webrtc/p2p/stunprober/ |
stunprober_unittest.cc | 104 StunProber::Stats stats; local 105 EXPECT_TRUE(prober->GetStats(&stats)); 106 EXPECT_EQ(stats.success_percent, 100); 107 EXPECT_TRUE(stats.nat_type > stunprober::NATTYPE_NONE); 108 EXPECT_EQ(stats.srflx_addrs, srflx_addresses); 109 EXPECT_EQ(static_cast<uint32_t>(stats.num_request_sent), 111 EXPECT_EQ(static_cast<uint32_t>(stats.num_response_received),
|
stunprober.cc | 435 bool StunProber::GetStats(StunProber::Stats* prob_stats) const { 441 StunProber::Stats stats; local 463 ++stats.raw_num_request_sent; 479 stats.srflx_addrs.insert(request->srflx_addr.ToString()); 509 stats.shared_socket_mode = 512 if (stats.shared_socket_mode && nat_type == NATTYPE_INVALID) { 518 if (stats.srflx_addrs.size() && 519 !srflx_addr.FromString(*(stats.srflx_addrs.begin()))) { 525 stats.host_ip = net->GetBestIP().ToString() [all...] |
/external/syzkaller/pkg/rpctype/ |
rpctype.go | 61 Stats map[string]uint64
|
/external/llvm/tools/sancov/ |
sancov.cc | 82 clEnumValN(StatsAction, "print-coverage-stats", 561 static raw_ostream &operator<<(raw_ostream &OS, const CoverageStats &Stats) { 562 OS << "all-edges: " << Stats.AllPoints << "\n"; 563 OS << "cov-edges: " << Stats.CovPoints << "\n"; 564 OS << "all-functions: " << Stats.AllFns << "\n"; 565 OS << "cov-functions: " << Stats.CovFns << "\n"; 829 void collectStats(CoverageStats *Stats) const { 830 Stats->AllPoints += AllCovPoints.size(); 831 Stats->AllFns += computeAllFunctions().size(); 832 Stats->CovFns += computeCoveredFunctions().size() [all...] |
/external/skia/src/gpu/ |
GrResourceCache.cpp | 762 void GrResourceCache::getStats(Stats* stats) const { 763 stats->reset(); 765 stats->fTotal = this->getResourceCount(); 766 stats->fNumNonPurgeable = fNonpurgeableResources.count(); 767 stats->fNumPurgeable = fPurgeableQueue.count(); 770 stats->update(fNonpurgeableResources[i]); 773 stats->update(fPurgeableQueue.at(i)); 781 Stats stats; [all...] |
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/ |
bwe_test_framework.cc | 39 const Stats<double>& delay_stats() const { 45 Stats<double> delay_stats_; 272 Stats<double> RateCounterFilter::GetBitrateStats() const { 530 Stats<double> ChokeFilter::GetDelayStats() const { 648 Stats<double> TraceBasedDeliveryFilter::GetDelayStats() const { 652 Stats<double> TraceBasedDeliveryFilter::GetBitrateStats() const {
|
bwe_test_framework_unittest.cc | 90 Stats<int32_t> stats; local 91 EXPECT_EQ(0, stats.GetMean()); 93 stats.Push(1); 94 stats.Push(3); 95 EXPECT_EQ(2, stats.GetMean()); 98 stats.Push(-3); 99 EXPECT_EQ(0, stats.GetMean()); 103 Stats<int32_t> stats; local 118 Stats<int32_t> stats; local 132 Stats<int32_t> stats; local [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/tools/sancov/ |
sancov.cpp | 80 clEnumValN(StatsAction, "print-coverage-stats", 276 static raw_ostream &operator<<(raw_ostream &OS, const CoverageStats &Stats) { 277 OS << "all-edges: " << Stats.AllPoints << "\n"; 278 OS << "cov-edges: " << Stats.CovPoints << "\n"; 279 OS << "all-functions: " << Stats.AllFns << "\n"; 280 OS << "cov-functions: " << Stats.CovFns << "\n"; [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
pstats.py | 42 __all__ = ["Stats"]
44 class Stats:
51 is that an "add()" method has been provided to combine Stats from
70 Stats('foo', 'goo').strip_dirs().sort_stats('calls').\
105 self.stats = {}
119 if not arg: self.stats = {}
122 self.stats = marshal.load(f)
132 self.stats = arg.stats
133 arg.stats = {} [all...] |
cProfile.py | 81 pstats.Stats(self).strip_dirs().sort_stats(sort).print_stats()
87 marshal.dump(self.stats, f)
96 self.stats = {}
107 self.stats[func] = cc, nc, tt, ct, callers
170 help="Save stats to <outfile>", default=None)
172 help="Sort order when printing to stdout, based on pstats.Stats class",
|
/external/python/cpython2/Lib/ |
pstats.py | 30 __all__ = ["Stats"] 32 class Stats: 39 is that an "add()" method has been provided to combine Stats from 58 Stats('foo', 'goo').strip_dirs().sort_stats('calls').\ 93 self.stats = {} 107 if not arg: self.stats = {} 110 self.stats = marshal.load(f) 120 self.stats = arg.stats 121 arg.stats = { [all...] |
cProfile.py | 81 pstats.Stats(self).strip_dirs().sort_stats(sort).print_stats() 87 marshal.dump(self.stats, f) 96 self.stats = {} 107 self.stats[func] = cc, nc, tt, ct, callers 170 help="Save stats to <outfile>", default=None) 172 help="Sort order when printing to stdout, based on pstats.Stats class",
|
/external/python/cpython3/Lib/ |
pstats.py | 31 __all__ = ["Stats", "SortKey"] 55 class Stats: 62 is that an "add()" method has been provided to combine Stats from 85 Stats('foo', 'goo').strip_dirs().sort_stats('calls').\ 108 self.stats = {} 120 self.stats = {} 124 self.stats = marshal.load(f) 133 self.stats = arg.stats 134 arg.stats = { [all...] |
/external/webrtc/webrtc/call/ |
rampup_tests.cc | 220 Call::Stats stats = sender_call_->GetStats(); local 229 EXPECT_GT(stats.send_bandwidth_bps, 0.9 * start_bitrate_bps_); 232 if (stats.send_bandwidth_bps >= expected_bitrate_bps_) { 270 // TODO(holmer): Add audio send stats here too when those APIs are available. 271 VideoSendStream::Stats send_stats = send_stream_->GetStats(); 339 webrtc::VideoSendStream::Stats stats = send_stream_->GetStats(); local 341 for (auto it : stats.substreams) { 345 EvolveTestState(transmit_bitrate_bps, stats.suspended) [all...] |
/external/webrtc/webrtc/modules/audio_processing/aec/ |
echo_cancellation.c | 450 Stats erl; 451 Stats erle; 452 Stats a_nlp;
|
/art/runtime/ |
stack_map.h | 51 class Stats; 438 // Accumulate code info size statistics into the given Stats tree. 439 static void CollectSizeStats(const uint8_t* code_info, /*out*/ Stats* parent);
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/ |
PDBExtras.cpp | 322 raw_ostream &llvm::pdb::operator<<(raw_ostream &OS, const TagStats &Stats) { 323 for (auto Tag : Stats) {
|
/external/antlr/runtime/Python/antlr3/ |
main.py | 147 stats = pstats.Stats('profile.dat') 148 stats.strip_dirs() 149 stats.sort_stats('time') 150 stats.print_stats(100)
|
/external/antlr/runtime/Python3/antlr3/ |
main.py | 109 stats = pstats.Stats('profile.dat') 110 stats.strip_dirs() 111 stats.sort_stats('time') 112 stats.print_stats(100)
|
/external/grpc-grpc/src/csharp/Grpc.IntegrationTesting/ |
Stats.cs | 3 // source: src/proto/grpc/testing/stats.proto 14 /// <summary>Holder for reflection information generated from src/proto/grpc/testing/stats.proto</summary> 18 /// <summary>File descriptor for src/proto/grpc/testing/stats.proto</summary> 185 private global::Grpc.Core.Stats coreStats_; 187 /// Core library stats 190 public global::Grpc.Core.Stats CoreStats { 331 coreStats_ = new global::Grpc.Core.Stats(); 372 coreStats_ = new global::Grpc.Core.Stats(); [all...] |
/external/grpc-grpc/test/cpp/qps/ |
report.cc | 26 #include "test/cpp/qps/stats.h" 102 const grpc::core::Stats& stats) { 104 ProtoToCoreStats(stats, &data);
|
/external/lzma/C/ |
Ppmd7.c | 30 #define STATS(ctx) Ppmd7_GetStats(p, ctx)
309 p->MinContext->Stats = REF(p->FoundState);
363 for (s = STATS(c); s->Symbol != p->FoundState->Symbol; s++);
387 for (s = STATS(c); s->Symbol != upState.Symbol; s++);
443 CPpmd_State *s = STATS(c);
527 oldPtr = STATS(c);
530 c->Stats = STATS_REF(ptr);
544 c->Stats = REF(s);
564 CPpmd_State *s = STATS(c) + ns1;
577 CPpmd_State *stats = STATS(p->MinContext); local [all...] |