HomeSort by relevance Sort by last modified time
    Searched defs:Stats (Results 1 - 15 of 15) sorted by null

  /external/llvm/lib/Support/
Statistic.cpp 1 //===-- Statistic.cpp - Easy way to expose stats information --------------===//
12 // printed at the end of a run, when the -stats command line option is enabled
39 /// -stats - Command line option to cause transformations to emit stats about
43 Enabled("stats", cl::desc("Enable statistics output from program"));
51 std::vector<const Statistic*> Stats;
58 Stats.push_back(S);
69 // If stats are enabled, inform StatInfo that this statistic should be
110 StatisticInfo &Stats = *StatInfo;
114 for (size_t i = 0, e = Stats.Stats.size(); i != e; ++i)
    [all...]
  /external/chromium/net/disk_cache/
stats.cc 5 #include "net/disk_cache/stats.h"
20 int data_sizes[disk_cache::Stats::kDataSizesLength];
21 int64 counters[disk_cache::Stats::MAX_COUNTER];
41 // WARNING: Add new stats only at the end, or change LoadStats().
65 COMPILE_ASSERT(arraysize(kCounterNames) == disk_cache::Stats::MAX_COUNTER,
72 bool LoadStats(BackendImpl* backend, Addr address, OnDiskStats* stats) {
79 memset(stats, 0, sizeof(*stats));
80 if (!file->Read(stats, sizeof(*stats), offset)
126 OnDiskStats stats; local
    [all...]
stats.h 23 class Stats {
52 Stats();
53 ~Stats();
73 // Saves the stats to disk.
91 DISALLOW_COPY_AND_ASSIGN(Stats);
  /external/antlr/src/org/antlr/runtime/misc/
Stats.java 33 /** Stats routines needed by profiler etc...
40 public class Stats {
  /external/chromium/chrome/browser/chromeos/
boot_times_loader.h 87 // Existing stats files will not be overwritten.
90 // Saves away the stats at main, so the can be recorded later. At main() time
95 // file thread. Existing stats files will not be overwritten.
146 struct Stats {
153 const std::string& name, const Stats& stats);
154 static Stats GetCurrentStats();
160 // Used to hold the stats at main().
161 Stats chrome_main_stats_;
  /frameworks/base/tools/localize/
XLIFFFile.h 16 struct Stats
66 Stats GetStats(const string& config) const;
  /external/llvm/tools/llvm-bcanalyzer/
llvm-bcanalyzer.cpp 547 // Emit per-block stats.
556 const PerBlockIDStats &Stats = I->second;
557 errs() << " Num Instances: " << Stats.NumInstances << "\n";
559 PrintSize(Stats.NumBits);
561 double pct = (Stats.NumBits * 100.0) / BufferSizeBits;
563 if (Stats.NumInstances > 1) {
565 PrintSize(Stats.NumBits/(double)Stats.NumInstances);
567 errs() << " Tot/Avg SubBlocks: " << Stats.NumSubBlocks << "/"
568 << Stats.NumSubBlocks/(double)Stats.NumInstances << "\n"
    [all...]
  /frameworks/base/tests/TileBenchmark/src/com/test/tilebenchmark/
PlaybackGraphs.java 121 protected static StatGen[] Stats = new StatGen[] {
162 protected double[][] mStats = new double[Metrics.length][Stats.length];
199 for (int statIndex = 0; statIndex < Stats.length; statIndex++) {
201 Stats[statIndex].getValue(metricValues);
238 for (int statIndex = 0; statIndex < Stats.length; statIndex++) {
240 Stats[statIndex].getLabelId()).substring(0,3);
  /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...]
  /development/ndk/platforms/android-8/samples/bitmap-plasma/jni/
plasma.c 269 /* simple stats management */
286 } Stats;
289 stats_init( Stats* s )
298 stats_startFrame( Stats* s )
304 stats_endFrame( Stats* s )
369 static Stats stats; local
374 stats_init(&stats);
392 stats_startFrame(&stats);
399 stats_endFrame(&stats);
    [all...]
  /development/ndk/platforms/android-9/samples/native-plasma/jni/
plasma.c 278 /* simple stats management */
295 } Stats;
298 stats_init( Stats* s )
307 stats_startFrame( Stats* s )
313 stats_endFrame( Stats* s )
378 Stats stats; member in struct:engine
395 stats_startFrame(&engine->stats);
407 stats_endFrame(&engine->stats);
466 stats_init(&engine.stats);
    [all...]
  /external/valgrind/tsan/
ts_stats.h 37 // For stats accessed concurrently from different threads
38 // we don't want to use global stats to avoid cache line ping-pong.
68 // increment them using the global stats object).
69 struct Stats : private ThreadLocalStats {
70 Stats() {
  /frameworks/base/core/java/com/android/internal/os/
ProcessStats.java 151 private final ArrayList<Stats> mProcStats = new ArrayList<Stats>();
152 private final ArrayList<Stats> mWorkingProcs = new ArrayList<Stats>();
174 public static class Stats {
179 final ArrayList<Stats> threadStats;
180 final ArrayList<Stats> workingThreads;
206 Stats(int _pid, int parentPid, boolean includeThreads) {
214 threadStats = new ArrayList<Stats>();
215 workingThreads = new ArrayList<Stats>();
    [all...]
  /frameworks/base/media/libstagefright/include/
AwesomePlayer.h 307 struct Stats {
  /external/dbus/test/
decode-gcov.c 2530 Stats stats = { 0, }; local
    [all...]

Completed in 630 milliseconds