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

1 2 3 4 5 6 7 8 9

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
byext.py 8 class Stats:
11 self.stats = {}
76 d = self.stats.setdefault(ext, {})
80 exts = self.stats.keys()
85 columns.update(self.stats[ext])
91 self.stats["TOTAL"] = {}
96 value = self.stats[ext].get(col)
105 self.stats["TOTAL"][col] = total
108 self.stats[ext]["ext"] = ext
117 value = self.stats[ext].get(col, "")
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/Misc/
Stats.cs 43 /** <summary>Stats routines needed by profiler etc...</summary>
51 public class Stats
  /external/python/cpython2/Tools/scripts/
byext.py 10 class Stats:
13 self.stats = {}
77 d = self.stats.setdefault(ext, {})
81 exts = sorted(self.stats.keys())
85 columns.update(self.stats[ext])
90 self.stats["TOTAL"] = {}
95 value = self.stats[ext].get(col)
104 self.stats["TOTAL"][col] = total
107 self.stats[ext]["ext"] = ext
116 value = self.stats[ext].get(col, ""
    [all...]
  /external/python/cpython3/Tools/scripts/
byext.py 9 class Stats:
12 self.stats = {}
75 d = self.stats.setdefault(ext, {})
79 exts = sorted(self.stats)
83 columns.update(self.stats[ext])
88 self.stats["TOTAL"] = {}
93 value = self.stats[ext].get(col)
102 self.stats["TOTAL"][col] = total
105 self.stats[ext]["ext"] = ext
116 value = self.stats[ext].get(col, ""
    [all...]
  /external/skia/tools/
Stats.h 20 struct Stats {
21 Stats(const SkTArray<double>& samples) {
  /external/skqp/tools/
Stats.h 20 struct Stats {
21 Stats(const SkTArray<double>& samples) {
  /external/webrtc/webrtc/modules/video_coding/codecs/test/
stats.cc 11 #include "webrtc/modules/video_coding/codecs/test/stats.h"
37 Stats::Stats() {}
39 Stats::~Stats() {}
57 FrameStatistic& Stats::NewFrame(int frame_number) {
65 void Stats::PrintSummary() {
stats.h 46 // Contains calculation methods for interesting metrics from these stats.
47 class Stats {
51 Stats();
52 virtual ~Stats();
  /build/kati/
stats.cc 17 #include "stats.h"
32 vector<Stats*>* g_stats;
37 Stats::Stats(const char* name) : name_(name), elapsed_(0), cnt_(0) {
40 g_stats = new vector<Stats*>;
44 void Stats::DumpTop() const {
59 string Stats::String() const {
64 void Stats::Start() {
71 double Stats::End(const char* msg) {
83 ScopedStatsRecorder::ScopedStatsRecorder(Stats* st, const char* msg
    [all...]
stats.h 24 class Stats {
26 explicit Stats(const char* name);
46 explicit ScopedStatsRecorder(Stats* st, const char* msg = 0);
50 Stats* st_;
57 static Stats stats(name); \
58 ScopedStatsRecorder ssr(&stats)
61 static Stats stats(name); \
62 ScopedStatsRecorder ssr(&stats, msg
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
Stats.cs 39 /** <summary>Stats routines needed by profiler etc...</summary>
47 public class Stats {
  /external/tensorflow/tensorflow/compiler/aot/
benchmark.h 47 // Stats holds statistics collected during benchmarking.
48 struct Stats {
52 Stats() : total_us(0) { per_iter_us.reserve(5000); }
55 // DumpStatsToStdout printfs to stdout stats in a multi-line human-friendly
57 void DumpStatsToStdout(const Stats& stats);
62 // Benchmark runs a benchmark of the function `fn`, collecting stats in `stats`.
64 void Benchmark(const Options& options, const BenchmarkFn& fn, Stats* stats);
    [all...]
  /development/tools/logblame/
analyze_logs.py 15 """Bucket of stats for a particular key managed by the Stats object."""
25 class Stats(object):
26 """A group of stats with a particular key, where both memory and count are tracked."""
172 byTag = Stats()
173 byPid = Stats()
174 byText = Stats()
  /device/linaro/bootloader/edk2/EmbeddedPkg/Drivers/Lan9118Dxe/
Lan9118Dxe.h 67 EFI_NETWORK_STATISTICS Stats;
  /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
37 /// -stats - Command line option to cause transformations to emit stats about
42 "stats",
46 static cl::opt<bool> StatsAsJSON("stats-json",
54 std::vector<const Statistic*> Stats;
65 Stats.push_back(S);
76 // If stats are enabled, inform StatInfo that this statistic should be
106 std::stable_sort(Stats.begin(), Stats.end()
    [all...]
  /external/swiftshader/third_party/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
38 /// -stats - Command line option to cause transformations to emit stats about
42 Enabled("stats", cl::desc("Enable statistics output from program"));
50 std::vector<const Statistic*> Stats;
57 Stats.push_back(S);
68 // If stats are enabled, inform StatInfo that this statistic should be
109 StatisticInfo &Stats = *StatInfo;
113 for (size_t i = 0, e = Stats.Stats.size(); i != e; ++i)
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/aec/
aec_core.h 42 typedef struct Stats {
52 } Stats;
94 Stats* erl,
95 Stats* erle,
96 Stats* a_nlp);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
ICURWLock.java 44 private Stats stats = null; field in class:ICURWLock
49 public final static class Stats {
75 private Stats() {
78 private Stats(int rc, int mrc, int wrc, int wc, int wwc) {
86 private Stats(Stats rhs) {
91 * Return a string listing all the stats.
104 * Reset the stats. Returns existing stats, if any
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
ICURWLock.java 42 private Stats stats = null; field in class:ICURWLock
47 public final static class Stats {
73 private Stats() {
76 private Stats(int rc, int mrc, int wrc, int wc, int wwc) {
84 private Stats(Stats rhs) {
89 * Return a string listing all the stats.
102 * Reset the stats. Returns existing stats, if any
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowStatFs.java 15 private static final Stats DEFAULT_STATS = new Stats(0, 0, 0);
16 private static Map<String, Stats> stats = new HashMap<String, Stats>(); field in class:ShadowStatFs
17 private Stats stat;
45 stat = stats.get(path);
56 stats.put(path, new Stats(blockCount, freeBlocks, availableBlocks));
60 stats.clear()
    [all...]
  /external/v8/src/compiler/
zone-stats.h 79 typedef std::vector<StatsScope*> Stats;
82 Stats stats_;
  /external/webrtc/webrtc/modules/audio_coding/test/
Channel.cc 297 int16_t Channel::Stats(CodecInst& codecInst,
329 void Channel::Stats(uint32_t* numPackets) {
349 void Channel::Stats(uint8_t* payloadType, uint32_t* payloadLenByte) {
375 Stats(codecInst, payloadStats);
  /frameworks/base/apct-tests/perftests/utils/src/android/perftests/utils/
Stats.java 23 public class Stats {
27 /* Calculate stats in constructor. */
28 public Stats(List<Long> values) {
  /frameworks/base/services/backup/java/com/android/server/backup/transport/
TransportStats.java 31 private final Map<ComponentName, Stats> mTransportStats = new HashMap<>();
35 Stats stats = mTransportStats.get(transportComponent); local
36 if (stats == null) {
37 stats = new Stats();
38 mTransportStats.put(transportComponent, stats);
40 stats.register(timeMs);
44 /** Returns {@link Stats} for transport whose host service is {@code transportComponent}. */
46 public Stats getStatsForTransport(ComponentName transportComponent)
48 Stats stats = mTransportStats.get(transportComponent); local
66 Stats stats = mTransportStats.get(transportComponent); local
    [all...]
  /frameworks/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/util/perf/
LongStatsCollector.java 41 public Stats getStats() {
58 return new Stats(mAllValues.size(), mMin, mMax, median);
68 public static class Stats {
74 private Stats(int samples, long min, long max, double median) {

Completed in 535 milliseconds

1 2 3 4 5 6 7 8 9