HomeSort by relevance Sort by last modified time
    Searched full:stats (Results 26 - 50 of 1357) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/llvm/test/CodeGen/X86/
convert-2-addr-3-addr-inc64.ll 2 ; RUN: llc < %s -mtriple=x86_64-linux -o /dev/null -stats 2>&1 | FileCheck %s -check-prefix=STATS
3 ; RUN: llc < %s -mtriple=x86_64-win32 -o /dev/null -stats 2>&1 | FileCheck %s -check-prefix=STATS
4 ; STATS: 9 asm-printer
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
LoadAverageService.java 37 private static final class Stats extends ProcessStats {
43 Stats(Paint paint) {
73 private final Stats mStats;
153 mStats = new Stats(mLoadPaint);
182 final Stats stats = mStats; local
183 final int userTime = stats.getLastUserTime();
184 final int systemTime = stats.getLastSystemTime();
185 final int iowaitTime = stats.getLastIoWaitTime();
186 final int irqTime = stats.getLastIrqTime()
262 final Stats stats = mStats; local
    [all...]
  /external/ipsec-tools/src/racoon/
stats.pl 3 # % cat /var/log/racoon-stats.log | perl stats.pl
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpcsvc/
rstat.h 72 struct stats { struct
86 typedef struct stats stats; typedef in typeref:struct:stats
128 extern stats * rstatproc_stats_1(void *, CLIENT *);
129 extern stats * rstatproc_stats_1_svc(void *, struct svc_req *);
135 extern stats * rstatproc_stats_1();
136 extern stats * rstatproc_stats_1_svc();
148 extern bool_t xdr_stats (XDR *, stats*);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/rpcsvc/
rstat.h 72 struct stats { struct
86 typedef struct stats stats; typedef in typeref:struct:stats
128 extern stats * rstatproc_stats_1(void *, CLIENT *);
129 extern stats * rstatproc_stats_1_svc(void *, struct svc_req *);
135 extern stats * rstatproc_stats_1();
136 extern stats * rstatproc_stats_1_svc();
148 extern bool_t xdr_stats (XDR *, stats*);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/rpcsvc/
rstat.h 72 struct stats { struct
86 typedef struct stats stats; typedef in typeref:struct:stats
128 extern stats * rstatproc_stats_1(void *, CLIENT *);
129 extern stats * rstatproc_stats_1_svc(void *, struct svc_req *);
135 extern stats * rstatproc_stats_1();
136 extern stats * rstatproc_stats_1_svc();
148 extern bool_t xdr_stats (XDR *, stats*);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
Profiler.cs 57 /** Because I may change the stats, I need to track that for later
61 public static readonly string RuntimeStatsFilename = "runtime.stats";
90 ProfileStats stats = new ProfileStats(); field in class:Antlr.Runtime.Debug.Profiler
102 stats.numRuleInvocations++;
104 stats.maxRuleInvocationDepth = Math.Max(stats.maxRuleInvocationDepth, ruleLevel);
128 stats.numMemoizationCacheMisses++;
129 stats.numGuessingRuleInvocations++; // we'll have to enter
134 stats.numMemoizationCacheHits++;
147 stats.numMemoizationCacheEntries++
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
Profiler.cs 57 /** Because I may change the stats, I need to track that for later
61 public static readonly string RuntimeStatsFilename = "runtime.stats";
90 ProfileStats stats = new ProfileStats(); field in class:Antlr.Runtime.Debug.Profiler
105 stats.numRuleInvocations++;
107 stats.maxRuleInvocationDepth = Math.Max(stats.maxRuleInvocationDepth, ruleLevel);
134 stats.numMemoizationCacheMisses++;
135 stats.numGuessingRuleInvocations++; // we'll have to enter
142 stats.numMemoizationCacheHits++;
156 stats.numMemoizationCacheEntries++
    [all...]
  /frameworks/base/core/java/com/android/internal/net/
NetworkStatsFactory.java 52 /** Path to {@code /proc/net/xt_qtaguid/stats}. */
63 mStatsXtUid = new File(procRoot, "net/xt_qtaguid/stats");
72 * @throws IllegalStateException when problem parsing stats.
77 final NetworkStats stats = new NetworkStats(SystemClock.elapsedRealtime(), 6); local
106 stats.addValues(entry);
110 throw new ProtocolException("problem parsing stats", e);
112 throw new ProtocolException("problem parsing stats", e);
117 return stats;
125 * @throws IllegalStateException when problem parsing stats.
133 final NetworkStats stats = new NetworkStats(SystemClock.elapsedRealtime(), 6)
173 final NetworkStats stats = new NetworkStats(SystemClock.elapsedRealtime(), 0); local
196 final NetworkStats stats = new NetworkStats(SystemClock.elapsedRealtime(), 24); local
    [all...]
  /external/clang/test/Analysis/
stats.c 2 // RUN: %clang_cc1 -analyze -analyzer-checker=core -analyzer-stats %s 2>&1 | FileCheck %s
  /external/webkit/Source/WebKit2/Shared/mac/
WebMemorySampler.mac.mm 62 malloc_statistics_t stats;
63 stats.blocks_in_use = 0;
64 stats.size_in_use = 0;
65 stats.max_size_in_use = 0;
66 stats.size_allocated = 0;
67 mallocStats.defaultMallocZoneStats = stats;
68 mallocStats.dispatchContinuationMallocZoneStats = stats;
69 mallocStats.purgeableMallocZoneStats = stats;
74 stats.blocks_in_use = 0;
75 stats.size_in_use = 0
    [all...]
  /frameworks/base/core/java/android/webkit/
EventLogTags.logtags 5 # browser stats for diary study
  /frameworks/base/core/tests/benchmarks/src/com/android/internal/net/
NetworkStatsFactoryBenchmark.java 29 // TODO: consider staging stats file with different number of rows
33 mStats = new File("/proc/net/xt_qtaguid/stats");
49 final NetworkStats stats = new NetworkStats(SystemClock.elapsedRealtime(), 0); local
51 stats, mStats.getAbsolutePath(), NetworkStats.UID_ALL);
  /device/asus/deb/original-kernel-headers/media/
msmb_camera.h 139 /* Composite stats */
141 /* AEC stats */
143 /* AF stats */
145 /* AWB stats */
147 /* IHIST stats */
149 /* Column count stats */
151 /* Row count stats */
153 /* Bayer Grid stats */
155 /* Bayer focus stats */
157 /* Bayer hist stats */
    [all...]
  /device/asus/flo/original-kernel-headers/media/
msmb_camera.h 139 /* Composite stats */
141 /* AEC stats */
143 /* AF stats */
145 /* AWB stats */
147 /* IHIST stats */
149 /* Column count stats */
151 /* Row count stats */
153 /* Bayer Grid stats */
155 /* Bayer focus stats */
157 /* Bayer hist stats */
    [all...]
  /external/compiler-rt/lib/asan/
asan_stats.cc 38 Printf("Stats: %zuM malloced (%zuM for red zones) by %zu calls\n",
40 Printf("Stats: %zuM realloced by %zu calls\n", realloced>>20, reallocs);
41 Printf("Stats: %zuM freed by %zu calls\n", freed>>20, frees);
42 Printf("Stats: %zuM really freed by %zu calls\n",
44 Printf("Stats: %zuM (%zuM-%zuM) mmaped; %zu maps, %zu unmaps\n",
52 Printf("Stats: malloc large: %zu small slow: %zu\n",
59 AsanStats stats; local
60 asanThreadRegistry().GetAccumulatedStats(&stats);
63 stats.Print();
65 Printf("Stats: StackDepot: %zd ids; %zdM mapped\n"
    [all...]
asan_thread_registry.h 47 // Returns stats for GetCurrent(), or stats for
50 // Flushes all thread-local stats to accumulated stats, and makes
51 // a copy of accumulated stats.
52 void GetAccumulatedStats(AsanStats *stats);
63 // Adds values of all counters in "stats" to accumulated stats,
64 // and fills "stats" with zeroes.
65 void FlushToAccumulatedStatsUnlocked(AsanStats *stats);
    [all...]
  /external/libvpx/libvpx/examples/
twopass_encoder.txt 17 vpx_fixed_buf_t stats = {0};
33 cfg.rc_twopass_stats_in = stats;
57 stats.buf = realloc(stats.buf, stats.sz
59 if(!stats.buf)
61 memcpy((char*)stats.buf + stats.sz,
64 stats.sz += pkt->data.twopass_stats.sz;
86 free(stats.buf)
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
MemoryStatistics.cpp 37 GlobalMemoryStatistics stats; local
39 stats.stackBytes = RegisterFile::committedByteCount();
41 stats.JITBytes = ExecutableAllocator::committedByteCount();
43 stats.JITBytes = 0;
45 return stats;
  /external/yaffs2/yaffs2/utils/
mkyaffs2image.c 356 struct stat stats; local
362 lstat(full_name,&stats);
391 stats.st_mode) < 0) {
399 if(S_ISLNK(stats.st_mode) ||
400 S_ISREG(stats.st_mode) ||
401 S_ISDIR(stats.st_mode) ||
402 S_ISFIFO(stats.st_mode) ||
403 S_ISBLK(stats.st_mode) ||
404 S_ISCHR(stats.st_mode) ||
405 S_ISSOCK(stats.st_mode)
537 struct stat stats; local
    [all...]
  /frameworks/base/tests/DataIdleTest/src/com/android/tests/dataidle/
DataIdleTest.java 70 * Helper method that fetches all the network stats available and reports it
79 final NetworkStats stats = session.getSummaryForAllUid( local
81 reportStats(stats);
83 Log.w(LOG_TAG, "Failed to fetch network stats.");
90 * Print network data usage stats to instrumentation out
91 * @param stats {@link NetworkorStats} to print
93 void reportStats(NetworkStats stats) {
99 for (int i = 0; i < stats.size(); ++i) {
101 Entry statsEntry = stats.getValues(i, null);
  /external/bison/lib/
bitset_stats.c 171 struct bitset_type_info_struct *stats)
173 if (!stats)
178 stats->allocs, stats->frees,
179 stats->allocs ? 100.0 * stats->frees / stats->allocs : 0);
181 stats->sets, stats->cache_sets,
182 stats->sets ? 100.0 * stats->cache_sets / stats->sets : 0)
    [all...]
  /external/chromium/base/
sys_info_freebsd.cc 16 sysctlbyname("vm.stats.vm.v_page_count", &pages, &size, NULL, 0);
17 sysctlbyname("vm.stats.vm.v_page_size", &page_size, &size, NULL, 0);
  /external/chromium/chrome/browser/chromeos/
metrics_cros_settings_provider.h 16 // CrosSettingsProvider that abstracts switching of stats/crash
22 // Actual methods to control stats/crash reporting. Currently these
  /external/chromium/chrome/browser/resources/net_internals/
httpcacheview.js 25 for (var statName in info.stats) {
27 addTextNode(li, statName + ': ' + info.stats[statName]);

Completed in 1663 milliseconds

12 3 4 5 6 7 8 91011>>