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

12 3 4 5 6

  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
page_heap_test.cc 16 tcmalloc::PageHeap::Stats stats = ph->stats(); local
17 EXPECT_EQ(system_pages, stats.system_bytes >> kPageShift);
18 EXPECT_EQ(free_pages, stats.free_bytes >> kPageShift);
19 EXPECT_EQ(unmapped_pages, stats.unmapped_bytes >> kPageShift);
  /external/chromium_org/third_party/tcmalloc/vendor/src/
page_heap.h 144 struct Stats {
145 Stats() : system_bytes(0), free_bytes(0), unmapped_bytes(0) {}
150 inline Stats stats() const { return stats_; } function in class:tcmalloc::PageHeap
160 // Stats for free large spans (i.e., spans with more than kMaxPages pages).
236 Stats stats_;
263 // appropriate free list, and adjust stats.
266 // Prepends span to appropriate free list, and adjusts stats.
269 // Removes span from its free list, and adjust stats.
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
page_heap_test.cc 16 tcmalloc::PageHeap::Stats stats = ph->stats(); local
17 EXPECT_EQ(system_pages, stats.system_bytes >> kPageShift);
18 EXPECT_EQ(free_pages, stats.free_bytes >> kPageShift);
19 EXPECT_EQ(unmapped_pages, stats.unmapped_bytes >> kPageShift);
  /frameworks/base/core/java/com/android/internal/os/
ProcessCpuTracker.java 159 private final ArrayList<Stats> mProcStats = new ArrayList<Stats>();
160 private final ArrayList<Stats> mWorkingProcs = new ArrayList<Stats>();
182 public static class Stats {
188 final ArrayList<Stats> threadStats;
189 final ArrayList<Stats> workingThreads;
221 Stats(int _pid, int parentPid, boolean includeThreads) {
229 threadStats = new ArrayList<Stats>();
230 workingThreads = new ArrayList<Stats>();
    [all...]
  /external/chromium_org/third_party/webrtc/video/
send_statistics_proxy_unittest.cc 32 expected_ = VideoSendStream::Stats();
44 void ExpectEqual(VideoSendStream::Stats one, VideoSendStream::Stats other) {
86 VideoSendStream::Stats expected_;
120 VideoSendStream::Stats stats = statistics_proxy_->GetStats(); local
121 ExpectEqual(expected_, stats);
133 VideoSendStream::Stats stats = statistics_proxy_->GetStats(); local
134 EXPECT_EQ(capture_fps, stats.input_frame_rate)
159 StreamStats& stats = expected_.substreams[ssrc]; local
171 StreamStats& stats = expected_.substreams[ssrc]; local
179 VideoSendStream::Stats stats = statistics_proxy_->GetStats(); local
216 VideoSendStream::Stats stats = statistics_proxy_->GetStats(); local
243 VideoSendStream::Stats stats = statistics_proxy_->GetStats(); local
273 VideoSendStream::Stats stats = statistics_proxy_->GetStats(); local
303 VideoSendStream::Stats stats = statistics_proxy_->GetStats(); local
    [all...]
receive_statistics_proxy.cc 37 VideoReceiveStream::Stats ReceiveStatisticsProxy::GetStats() const {
38 VideoReceiveStream::Stats stats; local
41 stats = stats_;
43 stats.c_name = GetCName();
44 codec_->GetReceiveSideDelay(channel_, &stats.avg_delay_ms);
45 stats.discarded_packets = codec_->GetNumDiscardedPackets(channel_);
47 channel_, stats.key_frames, stats.delta_frames);
49 return stats;
    [all...]
video_receive_stream.h 54 virtual Stats GetStats() const OVERRIDE;
video_send_stream.h 62 virtual Stats GetStats() const OVERRIDE;
  /external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/test/
bwe_test_framework.h 41 template<typename T> class Stats {
43 Stats()
234 Stats<double> GetBitrateStats() const;
240 Stats<double> packets_per_second_stats_;
241 Stats<double> kbps_stats_;
319 Stats<double> GetDelayStats() const;
344 Stats<double> GetDelayStats() const;
345 Stats<double> GetBitrateStats() const;
358 Stats<double> packets_per_second_stats_;
359 Stats<double> kbps_stats_
    [all...]
  /external/lzma/C/
Ppmd7.h 36 CPpmd_State_Ref Stats;
76 #define Ppmd7_GetStats(p, ctx) ((ctx)->Stats)
80 #define Ppmd7_GetStats(p, ctx) ((CPpmd_State *)Ppmd7_GetPtr((p), ((ctx)->Stats)))
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvideoengine2_unittest.h 50 virtual webrtc::VideoSendStream::Stats GetStats() const OVERRIDE;
77 virtual webrtc::VideoReceiveStream::Stats GetStats() const OVERRIDE;
  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test/
videoprocessor.h 21 #include "webrtc/modules/video_coding/codecs/test/stats.h"
164 Stats* stats);
193 Stats* stats_;
videoprocessor_unittest.cc 39 Stats stats_;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_profile.py 29 stats = pstats.Stats(prof, stream=s)
30 stats.strip_dirs().sort_stats("stdname")
31 getattr(stats, methodname)()
40 "Stats.%s output for %s doesn't fit expectation!" %
56 stats = pstats.Stats(prof, stream=s)
57 stats.print_stats()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_profile.py 29 stats = pstats.Stats(prof, stream=s)
30 stats.strip_dirs().sort_stats("stdname")
31 getattr(stats, methodname)()
40 "Stats.%s output for %s doesn't fit expectation!" %
56 stats = pstats.Stats(prof, stream=s)
57 stats.print_stats()
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ntddpsch.h 24 UCHAR Stats[1];
  /external/chromium_org/net/disk_cache/blockfile/
backend_impl_v3.h 18 #include "net/disk_cache/blockfile/stats.h"
138 void OnEvent(Stats::Counters an_event);
190 virtual void GetStats(StatsItems* stats) OVERRIDE;
228 // Send UMA stats.
271 Stats stats_; // Usage statistics.
  /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/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/chromium_org/chrome/common/extensions/docs/server2/
app_engine_handler.py 46 pstats.Stats(pr, stream=s).sort_stats(profile_mode).print_stats()
  /external/chromium_org/sandbox/win/tools/finder/
finder.h 11 // Type of stats that we calculate during the Scan operation
12 enum Stats {
136 // Stats containing the number of operations performed on the different
  /development/ndk/platforms/android-8/samples/bitmap-plasma/jni/
plasma.c 268 /* simple stats management */
285 } Stats;
288 stats_init( Stats* s )
297 stats_startFrame( Stats* s )
303 stats_endFrame( Stats* s )
368 static Stats stats; local
373 stats_init(&stats);
391 stats_startFrame(&stats);
398 stats_endFrame(&stats);
    [all...]
  /development/ndk/platforms/android-9/samples/native-plasma/jni/
plasma.c 277 /* simple stats management */
294 } Stats;
297 stats_init( Stats* s )
306 stats_startFrame( Stats* s )
312 stats_endFrame( Stats* s )
377 Stats stats; member in struct:engine
394 stats_startFrame(&engine->stats);
406 stats_endFrame(&engine->stats);
465 stats_init(&engine.stats);
    [all...]
  /external/chromium_org/net/tools/dump_cache/
dump_files.cc 24 #include "net/disk_cache/blockfile/stats.h"
56 // Dumps the contents of the Stats record.
72 size_t length = (2 + disk_cache::Stats::kDataSizesLength) * sizeof(int32) +
73 disk_cache::Stats::MAX_COUNTER * sizeof(int64);
82 printf("Stats:\nSignatrure: 0x%x\n", buffer[0]);
84 for (int i = 0; i < disk_cache::Stats::kDataSizesLength; i++)
88 buffer.get() + 2 + disk_cache::Stats::kDataSizesLength);
89 for (int i = 0; i < disk_cache::Stats::MAX_COUNTER; i++)
111 printf("stats: %x\n", header.stats);
    [all...]
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
sync_task_manager_unittest.cc 171 struct Stats {
176 Stats()
184 Stats* stats)
187 stats_(stats),
226 Stats* stats_;
487 BackgroundTask::Stats stats; local
492 &stats)),
500 &stats)),
528 BackgroundTask::Stats stats; local
569 BackgroundTask::Stats stats; local
    [all...]

Completed in 331 milliseconds

12 3 4 5 6