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

1 2 3

  /external/chromium_org/net/disk_cache/blockfile/
stats.h 26 enum Counters {
69 void OnEvent(Counters an_event);
70 void SetCounter(Counters counter, int64 value);
71 int64 GetCounter(Counters counter) const;
89 int GetRatio(Counters hit, Counters miss) const;
stats.cc 25 int64 counters[disk_cache::Stats::MAX_COUNTER]; member in struct:__anon13785::OnDiskStats
119 memcpy(counters_, stats->counters, sizeof(counters_));
156 // If we have more than 512 bytes of counters, change kDiskSignature so we
177 void Stats::OnEvent(Counters an_event) {
182 void Stats::SetCounter(Counters counter, int64 value) {
187 int64 Stats::GetCounter(Counters counter) const {
240 memcpy(stats->counters, counters_, sizeof(counters_));
310 int Stats::GetRatio(Counters hit, Counters miss) const {
backend_impl_v3.h 138 void OnEvent(Stats::Counters an_event);
backend_impl.h 207 void OnEvent(Stats::Counters an_event);
  /external/compiler-rt/lib/profile/
InstrProfilingPlatformOther.c 38 CountersFirst = Data->Counters;
39 CountersLast = Data->Counters + Data->NumCounters;
47 UPDATE_FIRST(CountersFirst, Data->Counters);
54 UPDATE_LAST(CountersLast, Data->Counters + Data->NumCounters);
InstrProfiling.h 37 uint64_t *const Counters;
  /external/llvm/include/llvm/ProfileData/
InstrProfWriter.h 43 ArrayRef<uint64_t> Counters);
  /external/llvm/lib/Target/R600/
SIInsertWaits.cpp 31 /// \brief One variable for each of the hardware counters
40 } Counters;
42 typedef Counters RegCounters[512];
54 static const Counters WaitCounts;
57 static const Counters ZeroCounts;
60 Counters WaitedOn;
63 Counters LastIssued;
75 Counters getHwCounts(MachineInstr &MI);
89 const Counters &Counts);
95 Counters handleOperands(MachineInstr &MI)
    [all...]
  /external/llvm/lib/ProfileData/
InstrProfWriter.cpp 72 ArrayRef<uint64_t> Counters) {
78 Data.Counts = Counters;
84 // and number of counters.
87 if (Data.Counts.size() != Counters.size())
89 // These match, add up the counters.
90 for (size_t I = 0, E = Counters.size(); I < E; ++I) {
91 if (Data.Counts[I] + Counters[I] < Data.Counts[I])
93 Data.Counts[I] += Counters[I];
  /external/chromium_org/v8/src/
counters.cc 8 #include "src/counters.h"
57 Counters::Counters(Isolate* isolate) {
117 void Counters::ResetCounters() {
149 void Counters::ResetHistograms() {
hydrogen-bch.cc 83 Counters* counters() const { return graph()->isolate()->counters(); } function in class:v8::internal::BASE_EMBEDDED
248 counters()->bounds_checks_eliminated()->Increment();
278 counters()->bounds_checks_hoisted()->Increment();
315 counters()->bounds_checks_eliminated()->Increment();
  /external/lldb/include/lldb/Symbol/
ClangASTImporter.h 70 struct Counters
80 static Counters global_counters;
81 static Counters local_counters;
83 static void DumpCounters (Log *log, Counters &counters);
  /external/chromium_org/v8/src/ic/x64/
stub-cache-x64.cc 110 Counters* counters = masm->isolate()->counters(); local
111 __ IncrementCounter(counters->megamorphic_stub_cache_probes(), 1);
145 __ IncrementCounter(counters->megamorphic_stub_cache_misses(), 1);
  /external/chromium_org/content/browser/android/java/
gin_java_method_invocation_helper_unittest.cc 99 typedef std::map<GinJavaBoundObject::ObjectID, int> Counters;
100 Counters counters_;
  /external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 1 //===- GCOVProfiling.cpp - Insert edge counters for gcov profiling --------===//
117 // Produce a table of pointers to counters, by predecessor and successor
124 // Add the function to write out all our counters to the global destructor
593 GlobalVariable *Counters =
598 CountersBySP.push_back(std::make_pair(Counters, (MDNode*)SP));
610 Value *Counter = Builder.CreateConstInBoundsGEP2_64(Counters, 0,
623 Value *Counter = Builder.CreateInBoundsGEP(Counters, Idx);
639 buildEdgeLookupTable(F, Counters,
707 GlobalVariable *Counters,
732 Value *Counter = Builder.CreateConstInBoundsGEP2_64(Counters, 0
    [all...]
  /external/lldb/source/Symbol/
ClangASTImporter.cpp 24 ClangASTMetrics::Counters ClangASTMetrics::global_counters = { 0, 0, 0, 0, 0, 0 };
25 ClangASTMetrics::Counters ClangASTMetrics::local_counters = { 0, 0, 0, 0, 0, 0 };
27 void ClangASTMetrics::DumpCounters (Log *log, ClangASTMetrics::Counters &counters)
29 log->Printf(" Number of visible Decl queries by name : %" PRIu64, counters.m_visible_query_count);
30 log->Printf(" Number of lexical Decl queries : %" PRIu64, counters.m_lexical_query_count);
31 log->Printf(" Number of imports initiated by LLDB : %" PRIu64, counters.m_lldb_import_count);
32 log->Printf(" Number of imports conducted by Clang : %" PRIu64, counters.m_clang_import_count);
33 log->Printf(" Number of Decls completed : %" PRIu64, counters.m_decls_completed_count);
34 log->Printf(" Number of records laid out : %" PRIu64, counters.m_record_layout_count)
    [all...]
  /external/chromium_org/v8/src/extensions/
statistics-extension.cc 57 heap->CollectAllGarbage(Heap::kNoGCFlags, "counters extension");
61 Counters* counters = isolate->counters(); local
65 AddCounter(args.GetIsolate(), result, counters->name(), #name);
71 AddCounter(args.GetIsolate(), result, counters->count_of_##name(), \
73 AddCounter(args.GetIsolate(), result, counters->size_of_##name(), \
79 AddCounter(args.GetIsolate(), result, counters->count_of_CODE_TYPE_##name(), \
81 AddCounter(args.GetIsolate(), result, counters->size_of_CODE_TYPE_##name(), \
88 counters->count_of_FIXED_ARRAY_##name(),
    [all...]
  /external/chromium_org/v8/src/ic/arm/
stub-cache-arm.cc 128 Counters* counters = masm->isolate()->counters(); local
129 __ IncrementCounter(counters->megamorphic_stub_cache_probes(), 1, extra2,
166 __ IncrementCounter(counters->megamorphic_stub_cache_misses(), 1, extra2,
  /external/chromium_org/v8/src/ic/arm64/
stub-cache-arm64.cc 111 Counters* counters = masm->isolate()->counters(); local
112 __ IncrementCounter(counters->megamorphic_stub_cache_probes(), 1, extra2,
143 __ IncrementCounter(counters->megamorphic_stub_cache_misses(), 1, extra2,
  /external/chromium_org/v8/src/ic/ia32/
stub-cache-ia32.cc 144 Counters* counters = masm->isolate()->counters(); local
145 __ IncrementCounter(counters->megamorphic_stub_cache_probes(), 1);
181 __ IncrementCounter(counters->megamorphic_stub_cache_misses(), 1);
  /external/chromium_org/v8/src/ic/mips/
stub-cache-mips.cc 124 Counters* counters = masm->isolate()->counters(); local
125 __ IncrementCounter(counters->megamorphic_stub_cache_probes(), 1, extra2,
160 __ IncrementCounter(counters->megamorphic_stub_cache_misses(), 1, extra2,
  /external/chromium_org/v8/src/ic/mips64/
stub-cache-mips64.cc 125 Counters* counters = masm->isolate()->counters(); local
126 __ IncrementCounter(counters->megamorphic_stub_cache_probes(), 1, extra2,
161 __ IncrementCounter(counters->megamorphic_stub_cache_misses(), 1, extra2,
  /external/chromium_org/v8/src/ic/x87/
stub-cache-x87.cc 144 Counters* counters = masm->isolate()->counters(); local
145 __ IncrementCounter(counters->megamorphic_stub_cache_probes(), 1);
181 __ IncrementCounter(counters->megamorphic_stub_cache_misses(), 1);
  /external/chromium_org/chrome/browser/resources/
about_stats.js 52 /* Hides or shows counters based on the user's current filter selection. */
62 /* Colors the counters based on increasing or decreasing value. */
77 /* Counters with no values are null. Remove them. */
  /external/chromium_org/tools/stats_viewer/
stats_table.cs 140 /// Get access to the counters in the table.
142 public StatsTableCounters Counters() {
259 for (int counters = 0; counters < header_.max_counters; counters++) {
312 /// Enumerable list of Counters in the StatsTable
316 /// Create the list of counters
420 /// Find the counters in the table and insert into the counters_
472 // Highest index of counters processed.

Completed in 1294 milliseconds

1 2 3