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

1 2 3 4 5 6

  /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
44 "stats",
53 std::vector<const Statistic*> Stats;
60 Stats.push_back(S);
71 // If stats are enabled, inform StatInfo that this statistic should be
101 StatisticInfo &Stats = *StatInfo;
105 for (size_t i = 0, e = Stats.Stats.size(); i != e; ++i)
    [all...]
  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test/
stats.h 46 // Contains calculation methods for interesting metrics from these stats.
47 class Stats {
51 Stats();
52 virtual ~Stats();
stats_unittest.cc 11 #include "webrtc/modules/video_coding/codecs/test/stats.h"
28 stats_ = new Stats();
35 Stats* stats_;
44 // Add single frame stats and verify
51 // Add multiple frame stats and verify
stats.cc 11 #include "webrtc/modules/video_coding/codecs/test/stats.h"
35 Stats::Stats() {}
37 Stats::~Stats() {}
55 FrameStatistic& Stats::NewFrame(int frame_number) {
63 void Stats::PrintSummary() {
  /external/robolectric/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/chromium_org/net/disk_cache/blockfile/
stats.cc 5 #include "net/disk_cache/blockfile/stats.h"
24 int data_sizes[disk_cache::Stats::kDataSizesLength];
25 int64 counters[disk_cache::Stats::MAX_COUNTER];
45 // WARNING: Add new stats only at the end, or change LoadStats().
70 COMPILE_ASSERT(arraysize(kCounterNames) == disk_cache::Stats::MAX_COUNTER,
77 bool VerifyStats(OnDiskStats* stats) {
78 if (stats->signature != kDiskSignature)
83 if (static_cast<unsigned int>(stats->size) > sizeof(*stats)) {
84 memset(stats, 0, sizeof(*stats))
103 OnDiskStats* stats = &local_stats; local
233 OnDiskStats* stats = reinterpret_cast<OnDiskStats*>(data); local
    [all...]
stats.h 23 class Stats {
53 Stats();
54 ~Stats();
62 // Returns the number of bytes needed to store the stats on disk.
81 // Writes the stats into |data|, to be stored at the given cache address.
95 DISALLOW_COPY_AND_ASSIGN(Stats);
backend_impl_v3.cc 145 stats_.OnEvent(Stats::DOOM_ENTRY);
249 int64 last_report = stats_.GetCounter(Stats::LAST_REPORT);
252 stats_.SetCounter(Stats::LAST_REPORT, Time::Now().ToInternalValue());
269 int64 use_time = stats_.GetCounter(Stats::TIMER);
300 void BackendImplV3::OnEvent(Stats::Counters an_event) {
317 stats_.OnEvent(Stats::TIMER);
318 int64 time = stats_.GetCounter(Stats::TIMER);
319 int64 current = stats_.GetCounter(Stats::OPEN_ENTRIES);
328 stats_.SetCounter(Stats::OPEN_ENTRIES, current);
329 stats_.SetCounter(Stats::MAX_ENTRIES, max_refs_)
1228 StatsItems stats; local
    [all...]
backend_impl.cc 359 stats_.OnEvent(Stats::DOOM_CACHE);
416 stats_.OnEvent(Stats::DOOM_RECENT);
480 int64 total_hours = stats_.GetCounter(Stats::TIMER) / 120;
481 int64 no_use_hours = stats_.GetCounter(Stats::LAST_REPORT_TIMER) / 120;
489 stats_.OnEvent(Stats::OPEN_MISS);
502 stats_.OnEvent(Stats::OPEN_HIT);
553 stats_.OnEvent(Stats::CREATE_ERROR);
561 stats_.OnEvent(Stats::CREATE_ERROR);
573 stats_.OnEvent(Stats::CREATE_ERROR);
599 stats_.OnEvent(Stats::CREATE_HIT)
1825 StatsItems stats; local
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_processing/aec/
aec_core.h 39 typedef struct Stats {
49 } Stats;
86 Stats* erl,
87 Stats* erle,
88 Stats* a_nlp);
aec_core_internal.h 119 Stats erl;
120 Stats erle;
121 Stats aNlp;
122 Stats rerl;
  /external/skia/tools/
Stats.h 4 struct Stats {
5 Stats(const double samples[], int n) {
  /frameworks/base/core/jni/
android_net_TrafficStats.cpp 35 static const char* QTAGUID_UID_STATS = "/proc/net/xt_qtaguid/stats";
49 struct Stats {
58 static uint64_t getStatsType(struct Stats* stats, StatsType type) {
61 return stats->rxBytes;
63 return stats->rxPackets;
65 return stats->txBytes;
67 return stats->txPackets;
69 return stats->tcpRxPackets;
71 return stats->tcpTxPackets
154 struct Stats stats; local
169 struct Stats stats; local
179 struct Stats stats; local
    [all...]
  /external/chromium_org/chrome/browser/chromeos/
boot_times_loader.cc 112 // Names of login stats files.
135 BootTimesLoader::Stats BootTimesLoader::Stats::GetCurrentStats() {
138 Stats stats; local
142 base::ReadFileToString(kProcUptime, &stats.uptime_);
143 base::ReadFileToString(kDiskStat, &stats.disk_);
144 return stats;
147 std::string BootTimesLoader::Stats::SerializeToString() const {
156 LOG(WARNING) << "BootTimesLoader::Stats::SerializeToString(): failed."
    [all...]
boot_times_loader.h 58 // Existing stats files will not be overwritten.
61 // Saves away the stats at main, so the can be recorded later. At main() time
66 // file thread. Existing stats files will not be overwritten.
89 // This is called on Chrome process startup to write saved logout stats.
132 class Stats {
134 // Initializes stats with current /proc values.
135 static Stats GetCurrentStats();
141 static Stats DeserializeFromString(const std::string& value);
172 // Used to hold the stats at main().
173 Stats chrome_main_stats_
    [all...]
  /external/chromium_org/third_party/webrtc/
video_receive_stream.h 58 struct Stats : public StreamStats {
59 Stats()
176 virtual Stats GetStats() const = 0;
video_send_stream.h 40 struct Stats {
41 Stats()
158 virtual Stats GetStats() const = 0;
  /external/llvm/tools/llvm-bcanalyzer/
llvm-bcanalyzer.cpp 550 // Emit per-block stats.
559 const PerBlockIDStats &Stats = I->second;
560 outs() << " Num Instances: " << Stats.NumInstances << "\n";
562 PrintSize(Stats.NumBits);
564 double pct = (Stats.NumBits * 100.0) / BufferSizeBits;
566 if (Stats.NumInstances > 1) {
568 PrintSize(Stats.NumBits/(double)Stats.NumInstances);
570 outs() << " Tot/Avg SubBlocks: " << Stats.NumSubBlocks << "/"
571 << Stats.NumSubBlocks/(double)Stats.NumInstances << "\n"
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/
Channel.h 63 int16_t Stats(CodecInst& codecInst, ACMTestPayloadStats& payloadStats);
65 void Stats(uint32_t* numPackets);
67 void Stats(uint8_t* payloadLenByte, uint32_t* payloadType);
  /external/chromium_org/third_party/tcmalloc/vendor/src/
heap-profile-table.h 60 // Profile stats.
61 struct Stats {
68 bool Equivalent(const Stats& x) const {
86 struct AllocContextInfo : public Stats {
143 const Stats& total() const { return total_; }
204 // Hash table bucket to hold (de)allocation stats
206 struct Bucket : public Stats {
253 Stats* profile_stats; // stats to update (may be NULL)
255 DumpArgs(RawFD a, Stats* d
    [all...]
  /external/chromium_org/third_party/skia/tools/
Stats.h 13 struct Stats {
14 Stats(const double samples[], int n) {
  /external/chromium_org/third_party/webrtc/video/
receive_statistics_proxy.h 45 VideoReceiveStream::Stats GetStats() const;
82 VideoReceiveStream::Stats stats_ GUARDED_BY(crit_);
send_statistics_proxy.h 38 VideoSendStream::Stats GetStats() const;
49 virtual void Notify(const BitrateStatistics& stats, uint32_t ssrc) OVERRIDE;
82 VideoSendStream::Stats stats_ GUARDED_BY(crit_);
  /external/chromium_org/third_party/tcmalloc/chromium/src/
heap-profile-table.h 41 #include "heap-profile-stats.h"
65 // Profile stats.
66 typedef HeapProfileStats Stats;
89 struct AllocContextInfo : public Stats {
153 const Stats& total() const { return total_; }
235 // Hash table bucket to hold (de)allocation stats
299 DumpArgs(RawFD fd_arg, Stats* profile_stats_arg)
305 Stats* profile_stats; // stats to update (may be NULL)
369 Stats* profile_stats)
    [all...]
page_heap.h 152 struct Stats {
153 Stats() : system_bytes(0), free_bytes(0), unmapped_bytes(0) {}
160 inline Stats stats() const { return stats_; } function in class:tcmalloc::PageHeap
170 // Stats for free large spans (i.e., spans with more than kMaxPages pages).
248 Stats stats_;
274 // appropriate free list, and adjust stats.
283 // Prepends span to appropriate free list, and adjusts stats.
286 // Removes span from its free list, and adjust stats.

Completed in 608 milliseconds

1 2 3 4 5 6