Searched refs:Profiler (Results 1 – 4 of 4) sorted by relevance
34 class Profiler {65 static Profiler& get() noexcept;68 Profiler(const Profiler& rhs) = delete;69 Profiler(Profiler&& rhs) = delete;70 Profiler& operator=(const Profiler& rhs) = delete;71 Profiler& operator=(Profiler&& rhs) = delete;83 friend class Profiler; variable90 } counters[Profiler::EVENT_COUNT];219 Profiler() noexcept;220 ~Profiler() noexcept;
50 Profiler& Profiler::get() noexcept { in get()51 static Profiler sProfiler; in get()55 Profiler::Profiler() noexcept { in Profiler() function in utils::Profiler57 Profiler::resetEvents(EV_CPU_CYCLES | EV_L1D_RATES | EV_BPU_RATES); in Profiler()60 Profiler::~Profiler() noexcept { in ~Profiler()68 uint32_t Profiler::resetEvents(uint32_t eventMask) noexcept { in resetEvents()
87 Profiler& profiler = Profiler::get(); in main()88 profiler.resetEvents(Profiler::EV_CPU_CYCLES | Profiler::EV_L1I_RATES); in main()102 Profiler::Counters counters; in main()
8 "Profiler.cpp",