Searched defs:stats (Results 101 - 125 of 338) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/webrtc/voice_engine/
H A Dvoe_rtp_rtcp_impl.cc372 int VoERTP_RTCPImpl::GetRTCPStatistics(int channel, CallStatistics& stats) argument
389 return channelPtr->GetRTPStatistics(stats);
/external/chromium_org/tools/android/heap_profiler/
H A Dheap_dump.c60 HeapStats stats; local
82 if (ret != 3 || strcmp(map_file, "/dev/zero") != 0 || size < sizeof(stats))
87 ssize_t rsize = read_safe(mem_fd, &stats, sizeof(stats));
94 if (rsize < sizeof(stats))
97 if (stats.magic_start == HEAP_PROFILER_MAGIC_MARKER) {
116 printf(" \"total_allocated\": %zu,\n", stats.total_alloc_bytes);
117 printf(" \"num_allocs\": %"PRIu32",\n", stats.num_allocs);
118 printf(" \"num_stacks\": %"PRIu32",\n", stats.num_stack_traces);
128 lseek_abs(mem_fd, (uintptr_t) stats
[all...]
H A Dheap_profiler.c66 // |stats| contains the global tracking metadata and is the entry point which
68 static HeapStats* stats; variable
109 } else if (stats->max_stack_traces < ST_ENTRIES_MAX) {
110 st = &stack_traces[stats->max_stack_traces];
111 ++stats->max_stack_traces;
121 ++stats->num_stack_traces;
145 --stats->num_stack_traces;
179 } else if (stats->max_allocs < ALLOCS_ENTRIES_MAX) {
180 alloc = &allocs[stats->max_allocs];
181 ++stats
[all...]
H A Dheap_profiler_hooks_android.c76 HeapStats* stats = (HeapStats*) real_mmap( local
78 heap_profiler_stats_for_tests = stats;
79 heap_profiler_init(stats);
H A Dheap_profiler_integrationtest.cc63 const HeapStats* stats = *stats_ptr; local
64 EXPECT_TRUE(stats != NULL);
65 EXPECT_EQ(HEAP_PROFILER_MAGIC_MARKER, stats->magic_start);
66 return stats;
84 const HeapStats* stats = GetHeapStats(); local
85 for (size_t i = 0; i < stats->max_stack_traces; ++i) {
86 const StacktraceEntry* st = &stats->stack_traces[i];
101 const HeapStats* stats = GetHeapStats(); local
122 const size_t total_alloc_start = stats->total_alloc_bytes;
123 const size_t num_stack_traces_start = stats
[all...]
/external/chromium_org/v8/src/compiler/
H A Dpipeline.cc55 HStatistics* stats = info_->isolate()->GetTStatistics(); local
56 stats->SaveTiming(name_, delta, static_cast<int>(bytes));
60 stats->IncrementCreateGraph(delta);
63 stats->IncrementOptimizeGraph(delta);
66 stats->IncrementGenerateCode(delta);
/external/chromium_org/v8/tools/
H A Dgc-nvp-trace-processor.py316 def stats(out, prefix, trace, field): function in function:process_trace
365 stats(out, 'Total in GC', trace, 'pause')
366 stats(out, 'Scavenge', scavenges, 'pause')
367 stats(out, 'MarkSweep', marksweeps, 'pause')
368 stats(out, 'Mark', filter(lambda r: r['mark'] != 0, trace), 'mark')
369 stats(out, 'Sweep', filter(lambda r: r['sweep'] != 0, trace), 'sweep')
370 stats(out,
/external/compiler-rt/lib/asan/
H A Dasan_malloc_mac.cc295 void mi_statistics(malloc_zone_t *zone, malloc_statistics_t *stats) { argument
299 internal_memcpy(stats, &malloc_stats, sizeof(malloc_statistics_t));
H A Dasan_thread.h107 AsanStats &stats() { return stats_; } function in class:__asan::AsanThread
/external/compiler-rt/lib/msan/
H A Dmsan_allocator.cc187 uptr stats[AllocatorStatCount]; local
188 allocator.GetStats(stats);
189 return stats[AllocatorStatAllocated];
196 uptr stats[AllocatorStatCount]; local
197 allocator.GetStats(stats);
198 return stats[AllocatorStatMapped];
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_mman.cc187 uptr stats[AllocatorStatCount]; local
188 allocator()->GetStats(stats);
189 return stats[AllocatorStatAllocated];
196 uptr stats[AllocatorStatCount]; local
197 allocator()->GetStats(stats);
198 return stats[AllocatorStatMapped];
/external/e2fsprogs/lib/ext2fs/
H A Dbmap64.h52 struct ext2_bmap_statistics stats; member in struct:ext2fs_struct_generic_bitmap
H A Dclosefs.c440 io_stats stats = 0; local
451 fs->io->manager->get_stats(fs->io, &stats);
452 if (stats && stats->bytes_written && (fs->flags & EXT2_FLAG_RW)) {
453 fs->super->s_kbytes_written += stats->bytes_written >> 10;
/external/libpcap/
H A Dpcap-bt-linux.c382 bt_stats_linux(pcap_t *handle, struct pcap_stat *stats) argument
397 "Can't get stats via ioctl: %s", strerror(errno));
402 /* we receive both rx and tx frames, so comulate all stats */
403 stats->ps_recv = s->evt_rx + s->acl_rx + s->sco_rx + s->cmd_tx +
405 stats->ps_drop = s->err_rx + s->err_tx;
406 stats->ps_ifdrop = 0;
H A Dpcap-snf.c43 struct snf_ring_stats stats; local
46 if ((rc = snf_ring_getstats(ps->snf_ring, &stats))) {
51 ps->ps_recv = stats.ring_pkt_recv + stats.ring_pkt_overflow;
52 ps->ps_drop = stats.ring_pkt_overflow;
53 ps->ps_ifdrop = stats.nic_pkt_overflow + stats.nic_pkt_bad;
/external/libselinux/src/
H A Dlabel_android_property.c279 static void stats(struct selabel_handle __attribute__((unused)) *rec) function
281 selinux_log(SELINUX_WARNING, "'stats' functionality not implemented.\n");
297 rec->func_stats = &stats;
/external/llvm/lib/MC/
H A DMCExpr.cpp28 namespace stats { namespace in namespace:__anon25882
651 ++stats::MCExprEvaluate;
/external/qemu/distrib/libselinux/src/
H A Dlabel_android_property.c279 static void stats(struct selabel_handle __attribute__((unused)) *rec) function
281 selinux_log(SELINUX_WARNING, "'stats' functionality not implemented.\n");
297 rec->func_stats = &stats;
/external/webp/src/dsp/
H A Dlossless_mips32.c223 VP8LStreaks stats; local
224 int* const pstreaks = &stats.streaks[0][0];
225 int* const pcnts = &stats.counts[0];
227 memset(&stats, 0, sizeof(stats));
241 return stats;
248 VP8LStreaks stats; local
249 int* const pstreaks = &stats.streaks[0][0];
250 int* const pcnts = &stats.counts[0];
252 memset(&stats,
[all...]
/external/webp/src/enc/
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...]
H A Dwebpenc.c111 enc->use_tokens_ = (enc->rd_opt_level_ >= RD_OPT_BASIC); // need rd stats
128 // lf-stats: 0
162 + lf_stats_size; // autofilter stats
172 " lf-stats: %ld\n"
258 WebPAuxStats* stats = enc->pic_->stats; local
261 stats->PSNR[0] = (float)GetPSNR(sse[0], size);
262 stats->PSNR[1] = (float)GetPSNR(sse[1], size / 4);
263 stats->PSNR[2] = (float)GetPSNR(sse[2], size / 4);
264 stats
269 WebPAuxStats* const stats = enc->pic_->stats; local
[all...]
/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/extensions/
H A Dcast_streaming_native_handler.cc578 scoped_ptr<base::DictionaryValue> stats) {
589 callback_args[0] = converter->ToV8Value(stats.get(), context()->v8_context());
576 CallGetStatsCallback( int transport_id, scoped_ptr<base::DictionaryValue> stats) argument
/external/chromium_org/net/http/
H A Dhttp_server_properties_impl.cc444 NetworkStats stats) {
445 server_network_stats_map_[host_port_pair] = stats;
442 SetServerNetworkStats( const HostPortPair& host_port_pair, NetworkStats stats) argument
H A Dmock_http_cache.cc473 std::vector<std::pair<std::string, std::string> >* stats) {
472 GetStats( std::vector<std::pair<std::string, std::string> >* stats) argument

Completed in 6098 milliseconds

1234567891011>>