Searched refs:stats (Results 176 - 200 of 619) sorted by relevance

1234567891011>>

/external/chromium_org/tools/code_coverage/
H A Dcroc.py39 """Adds a contribution from another coverage stats dict.
51 """Add some default stats which might be assumed present.
54 croc file which expects certain stats to exist."""
81 self.stats = CoverageStats()
93 # Add stats that always exist
94 self.stats = CoverageStats(lines_executable=exe,
99 # Add conditional stats
101 self.stats['files_covered'] = 1
103 self.stats['files_instrumented'] = 1
131 """Recursively gets stats fo
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/
H A Dprinting.py159 stats = {}
162 stats.setdefault(result.worker_name, {'num_tests': 0, 'total_time': 0})
163 stats[result.worker_name]['num_tests'] += 1
164 stats[result.worker_name]['total_time'] += result.total_run_time
167 for worker_name in stats:
168 self._print_debug(" %10s: %5d tests, %6.2f secs" % (worker_name, stats[worker_name]['num_tests'], stats[worker_name]['total_time']))
223 stats = {}
225 stats.setdefault(result.shard_name, {'num_tests': 0, 'total_time': 0})
226 stats[resul
[all...]
/external/chromium_org/third_party/skia/bench/
H A Dnanobench.cpp657 Stats stats(samples.get(), FLAGS_samples);
666 log->timer("min_ms", stats.min);
667 log->timer("median_ms", stats.median);
668 log->timer("mean_ms", stats.mean);
669 log->timer("max_ms", stats.max);
670 log->timer("stddev_ms", sqrt(stats.var));
689 SkDebugf("%s\t%s\t%s\n", HUMANIZE(stats.median), bench->getUniqueName(), config);
691 const double stddev_percent = 100 * sqrt(stats.var) / stats.mean;
695 , HUMANIZE(stats
[all...]
/external/chromium_org/third_party/webrtc/modules/video_processing/main/source/
H A Ddeflickering.cc90 VideoProcessingModule::FrameStats* stats) {
115 if (!VideoProcessingModule::ValidFrameStats(*stats)) {
119 if (PreDetection(frame->timestamp(), *stats) == -1) return VPM_GENERAL_ERROR;
237 // Frame was altered, so reset stats.
238 VideoProcessingModule::ClearFrameStats(stats);
248 \param[in] stats Statistics of the current frame.
256 const VideoProcessingModule::FrameStats& stats) {
261 mean_val = ((stats.sum << kmean_valueScaling) / stats.num_pixels);
89 ProcessFrame(I420VideoFrame* frame, VideoProcessingModule::FrameStats* stats) argument
255 PreDetection(const uint32_t timestamp, const VideoProcessingModule::FrameStats& stats) argument
/external/valgrind/main/coregrind/
H A Dm_stacktrace.c145 const Bool do_stats = False; // compute and output some stats regularly.
158 } stats; local
163 // = stats.nr >= 123456;
255 if (do_stats) stats.nr++;
286 if (do_stats) stats.Ca++;
297 //??? stats
337 if (do_stats) stats.Fw++;
344 if (do_stats) stats.Cf++;
363 if (do_stats) stats.FO++;
367 if (do_stats && uregs.xip != fpverif_uregs.xip) stats
[all...]
/external/chromium_org/remoting/client/jni/
H A Dchromoting_jni_instance.cc512 ChromotingStats* stats = video_renderer_->GetStats();
513 __android_log_print(ANDROID_LOG_INFO, "stats",
516 stats->video_bandwidth()->Rate(),
517 stats->video_frame_rate()->Rate(),
518 stats->video_capture_ms()->Average(),
519 stats->video_encode_ms()->Average(),
520 stats->video_decode_ms()->Average(),
521 stats->video_paint_ms()->Average(),
522 stats->round_trip_ms()->Average());
524 client_status_logger_->LogStatistics(stats);
[all...]
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Dreceive_statistics_impl.cc239 RtcpStatistics stats; local
283 stats.fraction_lost = local_fraction_lost;
287 stats.cumulative_lost = cumulative_loss_;
288 stats.extended_max_sequence_number =
291 stats.jitter = jitter_q4_ >> 4;
294 last_reported_statistics_ = stats;
302 return stats;
513 void ReceiveStatisticsImpl::DataCountersUpdated(const StreamDataCounters& stats, argument
517 rtp_stats_callback_->DataCountersUpdated(stats, ssrc);
/external/chromium_org/extensions/renderer/
H A Dmodule_system_test.cc230 v8::HeapStatistics stats; local
231 isolate_->GetHeapStatistics(&stats);
235 while (stats.used_heap_size() != old_heap_size) {
236 old_heap_size = stats.used_heap_size();
239 isolate_->GetHeapStatistics(&stats);
/external/chromium_org/third_party/libwebp/enc/
H A Dtoken.c193 static void Record(int bit, proba_t* const stats) {
194 proba_t p = *stats;
196 p = ((p + 1u) >> 1) & 0x7fff7fffu; // -> divide the stats by 2.
200 *stats = p;
203 void VP8TokenToStats(const VP8TBuffer* const b, proba_t* const stats) {
212 Record((token >> 15) & 1, stats + (token & 0x3fffu));
H A Dvp8l.c1130 if (picture->stats != NULL) {
1131 WebPAuxStats* const stats = picture->stats; local
1132 stats->lossless_features = 0;
1133 if (enc->use_predict_) stats->lossless_features |= 1;
1134 if (enc->use_cross_color_) stats->lossless_features |= 2;
1135 if (enc->use_subtract_green_) stats->lossless_features |= 4;
1136 if (enc->use_palette_) stats->lossless_features |= 8;
1137 stats->histogram_bits = enc->histo_bits_;
1138 stats
1185 WebPAuxStats* const stats = picture->stats; local
[all...]
H A Dcost.c556 res->stats = enc->proba_.stats_[coeff_type];
666 static int Record(int bit, proba_t* const stats) { argument
667 proba_t p = *stats;
669 p = ((p + 1u) >> 1) & 0x7fff7fffu; // -> divide the stats by 2.
673 *stats = p;
684 // should be stats[VP8EncBands[n]], but it's equivalent for n=0 or 1
685 proba_t* s = res->stats[n][ctx];
695 s = res->stats[VP8EncBands[n]][0];
699 s = res->stats[VP8EncBands[n]][1];
728 s = res->stats[VP8EncBand
[all...]
/external/webp/src/enc/
H A Dtoken.c193 static void Record(int bit, proba_t* const stats) {
194 proba_t p = *stats;
196 p = ((p + 1u) >> 1) & 0x7fff7fffu; // -> divide the stats by 2.
200 *stats = p;
203 void VP8TokenToStats(const VP8TBuffer* const b, proba_t* const stats) {
212 Record((token >> 15) & 1, stats + (token & 0x3fffu));
H A Dvp8l.c1130 if (picture->stats != NULL) {
1131 WebPAuxStats* const stats = picture->stats; local
1132 stats->lossless_features = 0;
1133 if (enc->use_predict_) stats->lossless_features |= 1;
1134 if (enc->use_cross_color_) stats->lossless_features |= 2;
1135 if (enc->use_subtract_green_) stats->lossless_features |= 4;
1136 if (enc->use_palette_) stats->lossless_features |= 8;
1137 stats->histogram_bits = enc->histo_bits_;
1138 stats
1185 WebPAuxStats* const stats = picture->stats; local
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_firstpass.c81 // Read frame stats at an offset from the current position.
100 static void output_stats(FIRSTPASS_STATS *stats, argument
104 pkt.data.twopass_stats.buf = stats;
117 stats->frame,
118 stats->intra_error,
119 stats->coded_error,
120 stats->sr_coded_error,
121 stats->pcnt_inter,
122 stats->pcnt_motion,
123 stats
224 const FIRSTPASS_STATS *const stats = &twopass->total_stats; local
961 get_twopass_worst_quality(const VP9_COMP *cpi, const FIRSTPASS_STATS *stats, int section_target_bandwidth) argument
1013 FIRSTPASS_STATS *stats; local
1137 const FIRSTPASS_STATS *stats = &twopass->stats_in[j]; local
1169 accumulate_frame_motion_stats(const FIRSTPASS_STATS *stats, double *mv_in_out, double *mv_in_out_accumulator, double *abs_mv_in_out_accumulator, double *mv_ratio_accumulator) argument
[all...]
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/sync/
H A DChromiumSyncAdapter.java77 syncResult.stats.numIoExceptions++;
106 syncResult.stats.numIoExceptions++;
162 syncResult.stats.numIoExceptions++;
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/
H A Dtarget_delay_unittest.cc188 ACMNetworkStatistics stats; local
189 acm_->NetworkStatistics(&stats);
190 return stats.preferredBufferSize;
/external/chromium_org/tools/perf/metrics/
H A Dmemory.py55 This includes both per-page histogram stats, most about javascript
56 memory usage, and overall memory stats from the system for the whole
73 '--enable-stats-collection-bindings',
148 """Adds memory stats for browser, renderer and gpu processes.
152 memory_stats: System memory stats collected.
184 stats = memory_stats[process_type_memory]
185 if value_name_memory in stats:
186 values.append(stats[value_name_memory])
/external/chromium_org/base/test/
H A Dtrace_event_analyzer_unittest.cc714 RateStats stats; local
724 ASSERT_TRUE(GetRateStats(event_ptrs, &stats, NULL));
725 EXPECT_EQ(little_delta, stats.mean_us);
726 EXPECT_EQ(little_delta, stats.min_us);
727 EXPECT_EQ(little_delta, stats.max_us);
728 EXPECT_EQ(0.0, stats.standard_deviation_us);
735 ASSERT_TRUE(GetRateStats(event_ptrs, &stats, NULL));
736 EXPECT_LT(little_delta, stats.mean_us);
737 EXPECT_EQ(little_delta, stats.min_us);
738 EXPECT_EQ(big_delta, stats
[all...]
/external/chromium_org/chrome/renderer/
H A Dchrome_render_process_observer.cc75 // Rate limit informing the host of our cache stats.
107 WebCache::UsageStats stats; local
108 WebCache::getUsageStats(&stats);
109 RenderThread::Get()->Send(new ChromeViewHostMsg_UpdatedCacheStats(stats));
192 // The guard task to send out partial stats
242 // TODO(alph): Do caching heap stats and use the cache if we haven't got
244 // Currently a busy worker stats are not counted.
357 WebCache::ResourceTypeStats stats; local
359 WebCache::getResourceTypeStats(&stats);
360 RenderThread::Get()->Send(new ChromeViewHostMsg_ResourceTypeStats(stats));
[all...]
/external/chromium_org/chrome/browser/chromeos/login/
H A Dhwid_checker.cc121 chromeos::system::StatisticsProvider* stats = local
123 if (!stats->GetMachineStatistic(chromeos::system::kHardwareClassKey, &hwid)) {
/external/chromium_org/chrome/browser/renderer_host/
H A Dchrome_render_message_filter.h61 void OnResourceTypeStats(const blink::WebCache::ResourceTypeStats& stats);
62 void OnUpdatedCacheStats(const blink::WebCache::UsageStats& stats);
/external/chromium_org/net/quic/congestion_control/
H A Dcubic.cc53 Cubic::Cubic(const QuicClock* clock, QuicConnectionStats* stats) argument
57 stats_(stats) {
166 // Update cubic mode and reno mode stats in QuicConnectionStats.
/external/e2fsprogs/debugfs/
H A Dro_debug_cmds.ct22 show_super_stats, stats;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/
H A DConfigResultsElement.java324 double[] stats = null;
337 stats = getStatistics();
338 if (stats != null) {
340 localBuffer.append((int) stats[0]);
342 localBuffer.append(Util.DOUBLE_FORMAT.format(stats[1]));
344 localBuffer.append(Util.DOUBLE_FORMAT.format(stats[2]));
346 localBuffer.append(Util.PERCENTAGE_FORMAT.format(stats[3]));
354 if (stats == null && printValues) {
365 if (stats == null && printValues) {
/external/eigen/Eigen/src/OrderingMethods/
H A DOrdering.h136 Index stats [COLAMD_STATS]; local
143 Index info = internal::colamd(m, n, Alen, A.data(), p.data(), knobs, stats);

Completed in 1396 milliseconds

1234567891011>>