Lines Matching refs:counters
90 } counters[Profiler::EVENT_COUNT]; variable
97 lhs.counters[i].value -= rhs.counters[i].value;
103 uint64_t getInstructions() const { return counters[INSTRUCTIONS].value; } in getInstructions()
104 uint64_t getCpuCycles() const { return counters[CPU_CYCLES].value; } in getCpuCycles()
105 uint64_t getL1DReferences() const { return counters[DCACHE_REFS].value; } in getL1DReferences()
106 uint64_t getL1DMisses() const { return counters[DCACHE_MISSES].value; } in getL1DMisses()
107 uint64_t getL1IReferences() const { return counters[ICACHE_REFS].value; } in getL1IReferences()
108 uint64_t getL1IMisses() const { return counters[ICACHE_MISSES].value; } in getL1IMisses()
109 uint64_t getBranchInstructions() const { return counters[BRANCHES].value; } in getBranchInstructions()
110 uint64_t getBranchMisses() const { return counters[BRANCH_MISSES].value; } in getBranchMisses()
186 Counters counters; in readCounters() local
187 ssize_t n = read(mCountersFd[0], &counters, sizeof(Counters)); in readCounters()
190 outCounters->nr = counters.nr; in readCounters()
191 outCounters->time_enabled = counters.time_enabled; in readCounters()
192 outCounters->time_running = counters.time_running; in readCounters()
195 outCounters->counters[i] = counters.counters[mIds[i]]; in readCounters()
206 void readCounters(Counters* counters) noexcept { } in readCounters() argument