Searched defs:stats (Results 1 - 25 of 131) sorted by relevance

123456

/external/webkit/Source/JavaScriptCore/runtime/
H A DMemoryStatistics.cpp37 GlobalMemoryStatistics stats; local
39 stats.stackBytes = RegisterFile::committedByteCount();
41 stats.JITBytes = ExecutableAllocator::committedByteCount();
43 stats.JITBytes = 0;
45 return stats;
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DGrammarReport2.java48 stats(root, buf);
51 stats(g, buf);
56 void stats(Grammar g, StringBuilder buf) { method in class:GrammarReport2
/external/chromium/net/disk_cache/
H A Dmem_backend_impl.h82 std::vector<std::pair<std::string, std::string> >* stats) {}
81 GetStats( std::vector<std::pair<std::string, std::string> >* stats) argument
H A Dstats_histogram.cc8 #include "net/disk_cache/stats.h"
55 bool StatsHistogram::Init(const Stats* stats) { argument
56 DCHECK(stats);
62 stats_ = stats;
/external/compiler-rt/lib/asan/
H A Dasan_stats.cc59 AsanStats stats = asanThreadRegistry().GetAccumulatedStats(); local
62 stats.Print();
H A Dasan_thread_registry.cc59 FlushToAccumulatedStatsUnlocked(&thread->stats());
103 return (t) ? t->stats() : main_thread_.stats();
156 FlushToAccumulatedStatsUnlocked(&t->stats());
161 void AsanThreadRegistry::FlushToAccumulatedStatsUnlocked(AsanStats *stats) { argument
164 uptr *src = (uptr*)stats;
H A Dasan_thread.h87 AsanStats &stats() { return stats_; } function in class:__asan::AsanThread
/external/valgrind/main/memcheck/tests/
H A Dsbfragment.c11 void stats(char *msg) function
98 stats ("before freeing last block");
101 stats ("after freeing last block");
/external/webkit/Source/WebKit/chromium/src/
H A DWebCache.cpp94 MemoryCache::Statistics stats = cache->getStatistics(); local
95 ToResourceTypeStat(stats.images, result->images);
96 ToResourceTypeStat(stats.cssStyleSheets, result->cssStyleSheets);
97 ToResourceTypeStat(stats.scripts, result->scripts);
99 ToResourceTypeStat(stats.xslStyleSheets, result->xslStyleSheets);
103 ToResourceTypeStat(stats.fonts, result->fonts);
/external/iproute2/netem/
H A Dstats.c18 stats(FILE *fp) function
75 stats(fp);
/external/kernel-headers/original/linux/
H A Dtaskstats_kern.h27 sig->stats = NULL;
32 struct taskstats *stats; local
35 stats = kmem_cache_zalloc(taskstats_cache, SLAB_KERNEL);
36 if (!stats)
40 if (!sig->stats) {
41 sig->stats = stats;
42 stats = NULL;
46 if (stats)
47 kmem_cache_free(taskstats_cache, stats);
52 struct taskstats *stats = NULL; local
[all...]
H A Didle_stats_device.h66 struct msm_idle_read_stats *stats; member in struct:msm_idle_stats_device
/external/chromium/chrome/browser/
H A Doom_priority_manager.cc108 RendererStats stats; local
109 stats.last_selected = contents->last_selected_time();
110 stats.renderer_handle = contents->GetRenderProcessHost()->GetHandle();
111 stats.is_pinned = model->IsTabPinned(i);
112 stats.memory_used = 0; // This gets calculated in DoAdjustOomPriorities.
113 renderer_stats.push_back(stats);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DRawDataTable.java151 private void printRowDoubles(double[][] stats, int idx) { argument
154 double value = stats[i][idx];
H A DBarGraph.java48 BarItem(String t, double[] stats, String u, String slow, boolean sig) { argument
50 this.value= stats[0]==0 ? 0 : -stats[0] * 100;
65 public void addItem(String name, double[] stats, String url, String slow, boolean significant) { argument
66 this.fItems.add(new BarItem(name, stats, url, slow, significant));
/external/guava/guava/src/com/google/common/cache/
H A DCache.java122 * Returns a current snapshot of this cache's cumulative statistics. All stats are initialized
125 CacheStats stats(); method in interface:Cache
H A DForwardingCache.java104 public CacheStats stats() { method in class:ForwardingCache
105 return delegate().stats();
H A DAbstractCache.java110 public CacheStats stats() { method in class:AbstractCache
137 * Cache#stats}. This is solely intended for consumption by {@code Cache} implementors.
/external/jmonkeyengine/engine/src/core/com/jme3/app/
H A DStatsView.java52 * To use the stats view, you need to retrieve the
57 * Statistics stats = renderer.getStatistics();<br/>
58 * StatsView statsView = new StatsView("MyStats", assetManager, stats);<br/>
74 public StatsView(String name, AssetManager manager, Statistics stats){ argument
80 statistics = stats;
/external/libppp/src/
H A Dlink.h48 } stats; member in struct:link
51 u_long proto_in[NPROTOSTAT]; /* outgoing protocol stats */
52 u_long proto_out[NPROTOSTAT]; /* incoming protocol stats */
/external/oprofile/libdb/tests/
H A Ddb_test.c154 odb_hash_stat_t * stats; local
155 stats = odb_hash_stat(&hash);
156 odb_hash_display_stat(stats);
157 odb_hash_free_stat(stats);
/external/webkit/Source/WebKit2/Shared/
H A DWebMemorySampler.cpp142 WebMemoryStatistics stats = sampleWebKit(); local
143 if (!stats.keys.isEmpty()) {
144 for (size_t i = 0; i < stats.keys.size(); ++i) {
146 header.append(stats.keys[i].utf8().data());
/external/iproute2/ip/
H A Diplink_can.c263 struct can_device_stats *stats; local
265 if (xstats && RTA_PAYLOAD(xstats) == sizeof(*stats)) {
266 stats = RTA_DATA(xstats);
271 stats->restarts, stats->bus_error,
272 stats->arbitration_lost, stats->error_warning,
273 stats->error_passive, stats->bus_off);
/external/linux-tools-perf/util/
H A Dhist.h54 struct events_stats stats; member in struct:hists
/external/ppp/pppd/include/net/
H A Dvjcompress.h124 struct vjstat stats; member in struct:vjcompress

Completed in 474 milliseconds

123456