Searched defs:stats (Results 251 - 275 of 338) sorted by relevance

<<11121314

/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
H A Dwebrtcvideoengine2.cc493 // Ignore spammy trace messages, mostly from the stats API when we haven't
1635 webrtc::VideoSendStream::Stats stats = stream_->GetStats(); local
1636 info.framerate_input = stats.input_frame_rate;
1637 info.framerate_sent = stats.encode_frame_rate;
1640 stats.substreams.begin();
1641 it != stats.substreams.end();
1643 // TODO(pbos): Wire up additional stats, such as padding bytes.
1652 if (!stats.substreams.empty()) {
1654 webrtc::StreamStats first_stream_stats = stats.substreams.begin()->second;
1674 // TODO(pbos): Support or remove the following stats
1823 webrtc::VideoReceiveStream::Stats stats = stream_->GetStats(); local
[all...]
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dsession.cc638 bool BaseSession::GetStats(SessionStats* stats) { argument
645 stats->proxy_to_transport[proxy_id] = transport_id;
646 if (stats->transport_stats.find(transport_id)
647 == stats->transport_stats.end()) {
652 stats->transport_stats[transport_id] = subinfos;
/external/chromium_org/third_party/libwebp/enc/
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/mesa/src/src/gallium/state_trackers/d3d1x/dxgi/src/
H A Ddxgi_native.cpp592 DXGI_FRAME_STATISTICS *stats)
594 memset(stats, 0, sizeof(*stats));
596 QueryPerformanceCounter(&stats->SyncQPCTime);
591 GetFrameStatistics( DXGI_FRAME_STATISTICS *stats) argument
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dheap-checker.cc1816 const HeapProfileTable::Stats& stats = heap_profile->total(); local
1822 int64(stats.allocs - stats.frees),
1823 int64(stats.alloc_size - stats.free_size));
H A Dtcmalloc.cc315 // Extract interesting stats
326 // Get stats into "r". Also get per-size-class counts if class_count != NULL
343 // Add stats from per-thread heaps
350 r->pageheap = Static::pageheap()->stats();
364 // WRITE stats to "out"
366 TCMallocStats stats; local
371 ExtractStats(&stats, class_count, &small, &large);
373 ExtractStats(&stats, NULL, NULL, NULL);
379 stats.metadata_bytes - stats
663 TCMallocStats stats; local
675 TCMallocStats stats; local
685 PageHeap::Stats stats = Static::pageheap()->stats(); local
709 TCMallocStats stats; local
1390 TCMallocStats stats; local
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dheap-checker.cc1816 const HeapProfileTable::Stats& stats = heap_profile->total(); local
1822 int64(stats.allocs - stats.frees),
1823 int64(stats.alloc_size - stats.free_size));
H A Dtcmalloc.cc305 // Extract interesting stats
314 // Get stats into "r". Also get per-size-class counts if class_count != NULL
331 // Add stats from per-thread heaps
337 r->pageheap = Static::pageheap()->stats();
351 // WRITE stats to "out"
353 TCMallocStats stats; local
358 ExtractStats(&stats, class_count, &small, &large);
360 ExtractStats(&stats, NULL, NULL, NULL);
365 const uint64_t virtual_memory_used = (stats.pageheap.system_bytes
366 + stats
632 TCMallocStats stats; local
644 TCMallocStats stats; local
654 PageHeap::Stats stats = Static::pageheap()->stats(); local
660 TCMallocStats stats; local
667 TCMallocStats stats; local
674 TCMallocStats stats; local
699 TCMallocStats stats; local
1345 TCMallocStats stats; local
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_processing/aec/
H A Daec_core.c556 static void InitStats(Stats* stats) { argument
557 stats->instant = kOffsetLevel;
558 stats->average = kOffsetLevel;
559 stats->max = kOffsetLevel;
560 stats->min = kOffsetLevel * (-1);
561 stats->sum = 0;
562 stats->hisum = 0;
563 stats->himean = kOffsetLevel;
564 stats->counter = 0;
565 stats
[all...]
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Drtcp_sender.cc1978 RtcpStatistics stats; local
1979 if (!statistician->GetStatistics(&stats, true))
1981 report_block->fractionLost = stats.fraction_lost;
1982 report_block->cumulativeLost = stats.cumulative_lost;
1984 stats.extended_max_sequence_number;
1985 report_block->jitter = stats.jitter;
H A Drtp_sender.cc1677 void RTPSender::BitrateUpdated(const BitrateStatistics& stats) { argument
1684 bitrate_callback_->Notify(stats, ssrc);
/external/chromium_org/third_party/webrtc/video/
H A Dend_to_end_tests.cc1377 VideoReceiveStream::Stats stats = receive_stream_->GetStats(); local
1378 EXPECT_EQ(expected_receive_ssrc_, stats.ssrc);
1383 stats.network_frame_rate != 0 || stats.bitrate_bps != 0;
1385 receive_stats_filled_["FrameCallback"] |= stats.decode_frame_rate != 0;
1387 receive_stats_filled_["FrameRendered"] |= stats.render_frame_rate != 0;
1390 stats.rtcp_stats.cumulative_lost != 0 ||
1391 stats.rtcp_stats.extended_max_sequence_number != 0 ||
1392 stats.rtcp_stats.fraction_lost != 0 || stats
1409 VideoSendStream::Stats stats = send_stream_->GetStats(); local
1576 VideoReceiveStream::Stats stats = receive_stream_->GetStats(); local
[all...]
H A Dvideo_send_stream_tests.cc690 // When the stream is detected again, and the stats show that the stream
740 // have to wait for the stats to change.
744 VideoSendStream::Stats stats = stream_->GetStats(); local
745 if (stats.suspended == false) {
759 VideoSendStream::Stats stats = stream_->GetStats(); local
760 EXPECT_TRUE(stats.suspended);
954 VideoSendStream::Stats stats = stream_->GetStats(); local
956 if (stats.input_frame_rate > 0 && stats.encode_frame_rate > 0
957 && !stats
1045 VideoSendStream::Stats stats = stream_->GetStats(); local
[all...]
/external/chromium_org/v8/test/cctest/
H A Dtest-strings.cc318 void AccumulateStats(ConsString* cons_string, ConsStringStats* stats) { argument
325 stats->left_traversals_++;
326 AccumulateStats(ConsString::cast(cons_string->first()), stats);
329 stats->leaves_++;
330 stats->chars_ += left_length;
334 stats->right_traversals_++;
335 AccumulateStats(ConsString::cast(cons_string->second()), stats);
338 stats->empty_leaves_++;
341 stats->leaves_++;
342 stats
347 AccumulateStats(Handle<String> cons_string, ConsStringStats* stats) argument
357 AccumulateStatsWithOperator( ConsString* cons_string, ConsStringStats* stats) argument
376 ConsStringStats stats; local
[all...]
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator.h208 // Per-thread stats, live in per-thread cache.
240 // Global stats, used for aggregation and querying.
268 const AllocatorStats *stats = this; local
271 s[i] += stats->Get(AllocatorStat(i));
272 stats = stats->next_;
273 if (stats == this)
276 // All stats must be non-negative.
489 uptr n_allocated, n_freed; // Just stats.
1030 CHECK_LT(size_log, ARRAY_SIZE(stats
1225 } stats; member in class:__sanitizer::LargeMmapAllocator
[all...]
/external/flac/libFLAC/
H A Dmetadata_iterators.c139 static FLAC__bool get_file_stats_(const char *filename, struct stat *stats);
140 static void set_file_stats_(const char *filename, struct stat *stats);
348 struct stat stats; member in struct:FLAC__Metadata_SimpleIterator
404 set_file_stats_(iterator->filename, &iterator->stats);
507 iterator->has_stats = get_file_stats_(filename, &iterator->stats);
1650 struct stat stats; local
1673 get_file_stats_(chain->filename, &stats);
1694 set_file_stats_(chain->filename, &stats);
3113 set_file_stats_(iterator->filename, &iterator->stats);
3299 FLAC__bool get_file_stats_(const char *filename, struct stat *stats) argument
3306 set_file_stats_(const char *filename, struct stat *stats) argument
[all...]
/external/kernel-headers/original/uapi/linux/
H A Dip_vs.h209 struct ip_vs_stats_user stats; member in struct:ip_vs_service_entry
227 struct ip_vs_stats_user stats; member in struct:ip_vs_dest_entry
317 IPVS_CMD_ZERO, /* zero all counters and stats */
357 IPVS_SVC_ATTR_STATS, /* nested attribute for service stats */
386 IPVS_DEST_ATTR_STATS, /* nested attribute for dest stats */
/external/linux-tools-perf/perf-3.12.0/tools/perf/
H A Dbuiltin-kvm.c42 struct stats stats; member in struct:kvm_event_stats
349 /* reset stats for event */
351 init_stats(&event->total.stats);
355 init_stats(&event->vcpu[j].stats);
445 update_stats(&kvm_stats->stats, time_diff);
455 return rel_stddev_stats(stddev_stats(&kvm_stats->stats),
456 avg_stats(&kvm_stats->stats));
605 COMPARE_EVENT_KEY(count, stats.n);
606 COMPARE_EVENT_KEY(mean, stats
[all...]
/external/mdnsresponder/mDNSPosix/
H A DNetMonitor.c136 static ActivityStat *stats; variable
408 ActivityStat **s = &stats;
444 if (!stats) return;
449 for (s = stats; s; s=s->next)
/external/mesa3d/src/gallium/state_trackers/d3d1x/dxgi/src/
H A Ddxgi_native.cpp592 DXGI_FRAME_STATISTICS *stats)
594 memset(stats, 0, sizeof(*stats));
596 QueryPerformanceCounter(&stats->SyncQPCTime);
591 GetFrameStatistics( DXGI_FRAME_STATISTICS *stats) argument
/external/opencv/cvaux/src/
H A Dcvtrifocal.cpp683 unsigned char *stats[3]; local
685 stats[0] = statuses[0]->data.ptr;
686 stats[1] = statuses[1]->data.ptr;
687 stats[2] = statuses[2]->data.ptr;
693 comStat[i] = (unsigned char)(stats[0][i] * stats[1][i] * stats[2][i]);
/external/valgrind/main/include/vki/
H A Dvki-xen-domctl.h209 struct vki_xen_domctl_shadow_op_stats stats; member in struct:vki_xen_domctl_shadow_op
/external/webp/src/enc/
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/wpa_supplicant_8/hostapd/src/drivers/
H A Ddriver_atheros.c621 struct ieee80211req_sta_stats stats; local
628 memset(&stats, 0, sizeof(stats));
629 memcpy(stats.is_u.macaddr, addr, IEEE80211_ADDR_LEN);
631 &stats, sizeof(stats))) {
632 wpa_printf(MSG_DEBUG, "%s: Failed to fetch STA stats (addr "
639 printf("Failed to get station stats information element.\n");
643 data->rx_packets = stats.is_stats.ns_rx_data;
644 data->rx_bytes = stats
[all...]
H A Ddriver_bsd.c693 struct ieee80211req_sta_stats stats; local
695 memcpy(stats.is_u.macaddr, addr, IEEE80211_ADDR_LEN);
696 if (get80211var(priv, IEEE80211_IOC_STA_STATS, &stats, sizeof(stats))
699 data->rx_packets = stats.is_stats.ns_rx_data;
700 data->rx_bytes = stats.is_stats.ns_rx_bytes;
701 data->tx_packets = stats.is_stats.ns_tx_data;
702 data->tx_bytes = stats.is_stats.ns_tx_bytes;

Completed in 685 milliseconds

<<11121314