/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
GrammarReport.java | 33 import org.antlr.runtime.misc.Stats; 39 /** Because I may change the stats, I need to track version for later 43 public static final String GRAMMAR_STATS_FILENAME = "grammar.stats"; 194 data.mink = Stats.min(depths); 195 data.maxk = Stats.max(depths); 196 data.avgk = Stats.avg(depths); 209 // data. = Stats.stddev(depths); 211 // data. = Stats.min(acyclicDFAStates); 213 // data. = Stats.max(acyclicDFAStates); 215 // data. = Stats.avg(acyclicDFAStates) [all...] |
/external/skia/src/gpu/gl/builders/ |
GrGLShaderStringBuilder.cpp | 26 GrGpu::Stats* stats) { 53 stats->incShaderCompilations();
|
/external/skia/tools/VisualBench/ |
VisualLightweightBenchModule.cpp | 20 #include "Stats.h" 116 Stats stats(measurements); 117 fResults->metric("min_ms", stats.min); 126 const double stdDevPercent = 100 * sqrt(stats.var) / stats.mean; 131 HUMANIZE(stats.min), 132 HUMANIZE(stats.median), 133 HUMANIZE(stats.mean), 134 HUMANIZE(stats.max) [all...] |
/external/webrtc/webrtc/modules/audio_coding/test/ |
Channel.cc | 297 int16_t Channel::Stats(CodecInst& codecInst, 329 void Channel::Stats(uint32_t* numPackets) { 349 void Channel::Stats(uint8_t* payloadType, uint32_t* payloadLenByte) { 375 Stats(codecInst, payloadStats);
|
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/ |
packet_receiver.cc | 142 Stats<double> PacketReceiver::GetDelayStats() const {
|
bwe_test.cc | 192 Stats<double> throughput_kbps, 194 Stats<double> flow_delay_ms, 195 Stats<double> flow_throughput_kbps) { 196 std::map<int, Stats<double>> flow_delays_ms; 198 std::map<int, Stats<double>> flow_throughputs_kbps; 205 Stats<double> throughput_kbps, 206 std::map<int, Stats<double>> flow_delay_ms, 207 std::map<int, Stats<double>> flow_throughput_kbps) { 359 std::map<int, Stats<double>> flow_throughput_kbps; 365 std::map<int, Stats<double>> flow_delay_ms [all...] |
/external/webrtc/webrtc/p2p/stunprober/ |
main.cc | 66 StunProber::Stats stats; local 67 if (!prober->GetStats(&stats)) { 72 LOG(LS_INFO) << "Shared Socket Mode: " << stats.shared_socket_mode; 73 LOG(LS_INFO) << "Requests sent: " << stats.num_request_sent; 74 LOG(LS_INFO) << "Responses received: " << stats.num_response_received; 75 LOG(LS_INFO) << "Target interval (ns): " << stats.target_request_interval_ns; 76 LOG(LS_INFO) << "Actual interval (ns): " << stats.actual_request_interval_ns; 77 LOG(LS_INFO) << "NAT Type: " << PrintNatType(stats.nat_type); 78 LOG(LS_INFO) << "Host IP: " << stats.host_ip [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/hotshot/ |
stats.py | 52 return pstats.Stats(p)
|
/prebuilts/gdb/linux-x86/lib/python2.7/hotshot/ |
stats.py | 52 return pstats.Stats(p)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/hotshot/ |
stats.py | 52 return pstats.Stats(p)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/hotshot/ |
stats.py | 52 return pstats.Stats(p)
|
/external/webrtc/talk/media/base/ |
videoadapter_unittest.cc | 78 struct Stats { 111 Stats GetStats() { 113 Stats stats; local 114 stats.captured_frames = captured_frames_; 115 stats.dropped_frames = dropped_frames_; 116 stats.last_adapt_was_no_op = last_adapt_was_no_op_; 118 stats.adapted_width = adapted_format_.width; 119 stats.adapted_height = adapted_format_.height; 121 stats.adapted_width = stats.adapted_height = -1 177 VideoCapturerListener::Stats stats = listener_->GetStats(); local 192 VideoCapturerListener::Stats stats = listener_->GetStats(); local 209 VideoCapturerListener::Stats stats = listener_->GetStats(); local 226 VideoCapturerListener::Stats stats = listener_->GetStats(); local 243 VideoCapturerListener::Stats stats = listener_->GetStats(); local 332 VideoCapturerListener::Stats stats = listener_->GetStats(); local 404 VideoCapturerListener::Stats stats = listener_->GetStats(); local [all...] |
/external/webrtc/webrtc/audio/ |
audio_receive_stream.cc | 190 webrtc::AudioReceiveStream::Stats AudioReceiveStream::GetStats() const { 192 webrtc::AudioReceiveStream::Stats stats; local 193 stats.remote_ssrc = config_.rtp.remote_ssrc; 199 return stats; 202 stats.bytes_rcvd = call_stats.bytesReceived; 203 stats.packets_rcvd = call_stats.packetsReceived; 204 stats.packets_lost = call_stats.cumulativeLost; 205 stats.fraction_lost = Q8ToFloat(call_stats.fractionLost); 206 stats.capture_start_ntp_time_ms = call_stats.capture_start_ntp_time_ms_ [all...] |
audio_send_stream.cc | 125 webrtc::AudioSendStream::Stats AudioSendStream::GetStats() const { 127 webrtc::AudioSendStream::Stats stats; local 128 stats.local_ssrc = config_.rtp.ssrc; 134 stats.bytes_sent = call_stats.bytesSent; 135 stats.packets_sent = call_stats.packetsSent; 139 stats.rtt_ms = call_stats.rttMs; 143 stats.aec_quality_min = -1; 148 stats.codec_name = codec_inst.plname; 153 if (block.source_SSRC == stats.local_ssrc) [all...] |
/external/clang/tools/scan-build/bin/ |
scan-build | 338 my $Stats = shift; 361 # Add them to the stats array 362 push @$Stats, $Row; 379 my $Stats = shift; 449 AddStatLine($BugDescription, $Stats, $BugFile); 491 my $Stats = shift; 495 my $TotalFunctions = scalar(@$Stats); 503 foreach my $Row (@$Stats) { 579 my @Stats; 580 foreach my $file (@filesFound) { ScanFile(\@Index, $Dir, $file, \@Stats); } [all...] |
/prebuilts/clang/darwin-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/clang/host/darwin-x86/3.8/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/clang/host/darwin-x86/clang-2629532/tools/scan-build/bin/ |
scan-build | 338 my $Stats = shift; 361 # Add them to the stats array 362 push @$Stats, $Row; 379 my $Stats = shift; 449 AddStatLine($BugDescription, $Stats, $BugFile); 491 my $Stats = shift; 495 my $TotalFunctions = scalar(@$Stats); 503 foreach my $Row (@$Stats) { 579 my @Stats; 580 foreach my $file (@filesFound) { ScanFile(\@Index, $Dir, $file, \@Stats); } [all...] |
/prebuilts/clang/host/darwin-x86/clang-2658975/tools/scan-build/bin/ |
scan-build | 338 my $Stats = shift; 361 # Add them to the stats array 362 push @$Stats, $Row; 379 my $Stats = shift; 449 AddStatLine($BugDescription, $Stats, $BugFile); 491 my $Stats = shift; 495 my $TotalFunctions = scalar(@$Stats); 503 foreach my $Row (@$Stats) { 579 my @Stats; 580 foreach my $file (@filesFound) { ScanFile(\@Index, $Dir, $file, \@Stats); } [all...] |
/prebuilts/clang/host/darwin-x86/clang-2690385/tools/scan-build/bin/ |
scan-build | 338 my $Stats = shift; 361 # Add them to the stats array 362 push @$Stats, $Row; 379 my $Stats = shift; 449 AddStatLine($BugDescription, $Stats, $BugFile); 491 my $Stats = shift; 495 my $TotalFunctions = scalar(@$Stats); 503 foreach my $Row (@$Stats) { 579 my @Stats; 580 foreach my $file (@filesFound) { ScanFile(\@Index, $Dir, $file, \@Stats); } [all...] |
/prebuilts/clang/host/linux-x86/3.8/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/clang/host/linux-x86/clang-2629532/tools/scan-build/bin/ |
scan-build | 338 my $Stats = shift; 361 # Add them to the stats array 362 push @$Stats, $Row; 379 my $Stats = shift; 449 AddStatLine($BugDescription, $Stats, $BugFile); 491 my $Stats = shift; 495 my $TotalFunctions = scalar(@$Stats); 503 foreach my $Row (@$Stats) { 579 my @Stats; 580 foreach my $file (@filesFound) { ScanFile(\@Index, $Dir, $file, \@Stats); } [all...] |
/prebuilts/clang/host/linux-x86/clang-2658975/tools/scan-build/bin/ |
scan-build | 338 my $Stats = shift; 361 # Add them to the stats array 362 push @$Stats, $Row; 379 my $Stats = shift; 449 AddStatLine($BugDescription, $Stats, $BugFile); 491 my $Stats = shift; 495 my $TotalFunctions = scalar(@$Stats); 503 foreach my $Row (@$Stats) { 579 my @Stats; 580 foreach my $file (@filesFound) { ScanFile(\@Index, $Dir, $file, \@Stats); } [all...] |
/prebuilts/clang/host/linux-x86/clang-2690385/tools/scan-build/bin/ |
scan-build | 338 my $Stats = shift; 361 # Add them to the stats array 362 push @$Stats, $Row; 379 my $Stats = shift; 449 AddStatLine($BugDescription, $Stats, $BugFile); 491 my $Stats = shift; 495 my $TotalFunctions = scalar(@$Stats); 503 foreach my $Row (@$Stats) { 579 my @Stats; 580 foreach my $file (@filesFound) { ScanFile(\@Index, $Dir, $file, \@Stats); } [all...] |
/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...] |