Lines Matching full:perf
4 #include <perf/pan_perf.h>
32 : perf{reinterpret_cast<struct panfrost_perf *>( in PanfrostPerf()
35 assert(perf);
37 panfrost_perf_init(perf, dev.fd);
42 if (perf) { in ~PanfrostPerf()
43 panfrost_perf_disable(perf); in ~PanfrostPerf()
44 ralloc_free(perf); in ~PanfrostPerf()
48 PanfrostPerf::PanfrostPerf(PanfrostPerf &&o): perf{o.perf} in PanfrostPerf()
50 o.perf = nullptr;
56 std::swap(perf, o.perf); in operator =()
63 assert(perf); in enable()
64 return panfrost_perf_enable(perf); in enable()
70 assert(perf); in disable()
71 panfrost_perf_disable(perf); in disable()
77 assert(perf); in dump()
78 return panfrost_perf_dump(perf); in dump()