/prebuilts/clang/linux-x86/host/3.6/tools/scan-build/ |
scan-build | 313 my $Stats = shift; 336 # Add them to the stats array 337 push @$Stats, $Row; 354 my $Stats = shift; 424 AddStatLine($BugDescription, $Stats, $BugFile); 466 my $Stats = shift; 470 my $TotalFunctions = scalar(@$Stats); 478 foreach my $Row (@$Stats) { 554 my @Stats; 555 foreach my $file (@filesFound) { ScanFile(\@Index, $Dir, $file, \@Stats); } [all...] |
/prebuilts/misc/darwin-x86/analyzer/tools/scan-build/ |
scan-build | 298 my $Stats = shift; 321 # Add them to the stats array 322 push @$Stats, $Row; 339 my $Stats = shift; 399 AddStatLine($BugDescription, $Stats, $BugFile); 441 my $Stats = shift; 445 my $TotalFunctions = scalar(@$Stats); 453 foreach my $Row (@$Stats) { 527 my @Stats; 528 foreach my $file (@filesFound) { ScanFile(\@Index, $Dir, $file, \@Stats); } [all...] |
/prebuilts/misc/linux-x86/analyzer/tools/scan-build/ |
scan-build | 298 my $Stats = shift; 321 # Add them to the stats array 322 push @$Stats, $Row; 339 my $Stats = shift; 399 AddStatLine($BugDescription, $Stats, $BugFile); 441 my $Stats = shift; 445 my $TotalFunctions = scalar(@$Stats); 453 foreach my $Row (@$Stats) { 527 my @Stats; 528 foreach my $file (@filesFound) { ScanFile(\@Index, $Dir, $file, \@Stats); } [all...] |
/external/webrtc/webrtc/modules/video_coding/codecs/tools/ |
video_quality_measurement.cc | 26 #include "webrtc/modules/video_coding/codecs/test/stats.h" 346 void PrintCsvOutput(const webrtc::test::Stats& stats, 360 for (unsigned int i = 0; i < stats.stats_.size(); ++i) { 361 const webrtc::test::FrameStatistic& f = stats.stats_[i]; 375 const webrtc::test::Stats& stats, 438 for (unsigned int i = 0; i < stats.stats_.size(); ++i) { 439 const webrtc::test::FrameStatistic& f = stats.stats_[i]; 492 webrtc::test::Stats stats local [all...] |
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/ |
Stats.java | 33 /** Stats routines needed by profiler etc... 40 public class Stats {
|
/external/compiler-rt/lib/tsan/tests/unit/ |
tsan_mman_test.cc | 109 TEST(Mman, 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...] |
/prebuilts/go/darwin-x86/src/net/internal/socktest/ |
switch.go | 23 stats stats 29 sw.stats = make(stats) 32 // Stats returns a list of per-cookie socket statistics. 33 func (sw *Switch) Stats() []Stat { 36 for _, s := range sw.stats { 106 type stats map[Cookie]*Stat type 108 func (st stats) getLocked(c Cookie) *Stat {
|
/prebuilts/go/linux-x86/src/net/internal/socktest/ |
switch.go | 23 stats stats 29 sw.stats = make(stats) 32 // Stats returns a list of per-cookie socket statistics. 33 func (sw *Switch) Stats() []Stat { 36 for _, s := range sw.stats { 106 type stats map[Cookie]*Stat type 108 func (st stats) getLocked(c Cookie) *Stat {
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
LoadAverageService.java | 182 final CpuTracker stats = mStats; local 183 final int userTime = stats.getLastUserTime(); 184 final int systemTime = stats.getLastSystemTime(); 185 final int iowaitTime = stats.getLastIoWaitTime(); 186 final int irqTime = stats.getLastIrqTime(); 187 final int softIrqTime = stats.getLastSoftIrqTime(); 188 final int idleTime = stats.getLastIdleTime(); 217 canvas.drawText(stats.mLoadText, RIGHT-paddingRight-stats.mLoadWidth-1, 219 canvas.drawText(stats.mLoadText, RIGHT-paddingRight-stats.mLoadWidth-1 263 final CpuTracker stats = mStats; local [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...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
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...] |
/prebuilts/gdb/linux-x86/lib/python2.7/ |
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...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
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...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
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...] |
/external/harfbuzz_ng/test/shaping/ |
hb_test_tools.py | 172 class Stats: 198 Population is the Stats for population. 199 Self is Stats for sample. 215 # XXX port to Stats, but that would really slow us down here 227 allstats = Stats () 236 allgrams[ngram] = Stats () 240 for ngram, stats in allgrams.iteritems (): 241 if stats.failed.count >= 30: # for statistical reasons 242 importantgrams[ngram] = stats 246 for ngram, stats in allgrams.iteritems () [all...] |
/external/skia/src/gpu/ |
GrResourceCache.cpp | 637 struct Stats { 648 Stats(const GrResourceCache* cache) { 688 Stats stats(this); 695 stats.update(fNonpurgeableResources[i]); 701 stats.update(fPurgeableQueue.at(i)); 707 SkASSERT(stats.fBytes == fBytes); 708 SkASSERT(stats.fBudgetedBytes == fBudgetedBytes); 709 SkASSERT(stats.fBudgetedCount == fBudgetedCount); 718 SkASSERT(stats.fContent == fUniqueHash.count()) [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;
|
/external/antlr/antlr-3.4/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/chromium-trace/catapult/third_party/beautifulsoup4/bs4/ |
diagnose.py | 198 stats = pstats.Stats(filename) 199 # stats.strip_dirs() 200 stats.sort_stats("cumulative") 201 stats.print_stats('_html5lib|bs4', 50)
|
/external/lzma/C/ |
Ppmd7.c | 30 #define STATS(ctx) Ppmd7_GetStats(p, ctx)
307 p->MinContext->Stats = REF(p->FoundState);
361 for (s = STATS(c); s->Symbol != p->FoundState->Symbol; s++);
385 for (s = STATS(c); s->Symbol != upState.Symbol; s++);
441 CPpmd_State *s = STATS(c);
525 oldPtr = STATS(c);
528 c->Stats = STATS_REF(ptr);
542 c->Stats = REF(s);
562 CPpmd_State *s = STATS(c) + ns1;
575 CPpmd_State *stats = STATS(p->MinContext); local [all...] |
/external/vulkan-validation-layers/ |
genvk.py | 334 p = pstats.Stats('profile.txt')
|