Home
last modified time | relevance | path

Searched refs:counter_id (Results 1 – 16 of 16) sorted by relevance

/third_party/mesa3d/src/panfrost/ds/
Dpan_pps_driver.cc38 uint32_t find_id_within_group(uint32_t counter_id, const struct panfrost_perf_config *cfg) in find_id_within_group() argument
42 if (counter_id < cat->n_counters) { in find_id_within_group()
45 counter_id -= cat->n_counters; in find_id_within_group()
48 return counter_id; in find_id_within_group()
106 void PanfrostDriver::enable_counter(const uint32_t counter_id) in enable_counter() argument
108 enabled_counters.push_back(counters[counter_id]); in enable_counter()
Dpan_pps_driver.h38 void enable_counter(uint32_t counter_id) override;
/third_party/mesa3d/src/tool/pps/
Dpps_config.cc73 uint32_t counter_id = 0; in to_counter_id() local
75 auto res = std::from_chars(view.data(), view.data() + view.size(), counter_id); in to_counter_id()
80 return counter_id; in to_counter_id()
112 if (auto counter_id = to_counter_id(id)) { in main() local
113 counter_ids.push_back(*counter_id); in main()
Dpps_driver.h52 virtual void enable_counter(uint32_t counter_id) = 0;
Dpps_datasource.cc65 uint32_t counter_id = it->as_uint32(); in OnSetup() local
66 driver->enable_counter(counter_id); in OnSetup()
/third_party/mesa3d/src/intel/ds/
Dintel_pps_driver.cc34 void IntelDriver::enable_counter(uint32_t counter_id) in enable_counter() argument
36 auto &counter = counters[counter_id]; in enable_counter()
43 counter_id, in enable_counter()
61 for (uint32_t counter_id : group.counters) { in enable_all_counters() local
62 auto &counter = counters[counter_id]; in enable_all_counters()
Dintel_pps_driver.h48 void enable_counter(uint32_t counter_id) override;
/third_party/mesa3d/src/panfrost/perf/
Dpan_gen_perf.py180 counter_id = 0
195 assert counter_id < n_counters
209 counter_id += 1
/third_party/mesa3d/src/freedreno/ds/
Dfd_pps_driver.cc190 FreedrenoDriver::enable_counter(const uint32_t counter_id) in enable_counter() argument
192 enabled_counters.push_back(counters[counter_id]); in enable_counter()
Dfd_pps_driver.h25 void enable_counter(uint32_t counter_id) override;
/third_party/flutter/engine/flutter/fml/
Dtrace_event.h56 #define FML_TRACE_COUNTER(category_group, name, counter_id, arg1, ...) \ argument
57 ::fml::tracing::TraceCounter((category_group), (name), (counter_id), (arg1), \
/third_party/skia/third_party/externals/spirv-cross/
Dmain.cpp410 uint32_t counter_id = 0; in print_resources() local
411 if (print_ssbo && compiler.buffer_get_hlsl_counter_buffer(res.id, counter_id)) in print_resources()
412 fprintf(stderr, " (HLSL counter buffer ID: %u)", counter_id); in print_resources()
Dspirv_cross_c.h1005 … spvc_variable_id *counter_id);
Dspirv_cross.hpp496 bool buffer_get_hlsl_counter_buffer(VariableID id, uint32_t &counter_id) const;
Dspirv_cross_c.cpp2430 spvc_variable_id *counter_id) in spvc_compiler_buffer_get_hlsl_counter_buffer() argument
2436 *counter_id = buffer; in spvc_compiler_buffer_get_hlsl_counter_buffer()
Dspirv_cross.cpp4414 bool Compiler::buffer_get_hlsl_counter_buffer(VariableID id, uint32_t &counter_id) const in buffer_get_hlsl_counter_buffer()
4421 counter_id = m->hlsl_magic_counter_buffer; in buffer_get_hlsl_counter_buffer()