Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/logging/
Druntime-call-stats-scope.h27 RuntimeCallCounterId counter_id) { in RuntimeCallTimerScope() argument
30 stats_->Enter(&timer_, counter_id); in RuntimeCallTimerScope()
34 LocalIsolate* isolate, RuntimeCallCounterId counter_id, in RuntimeCallTimerScope() argument
40 counter_id = stats_->CounterIdForThread(counter_id); in RuntimeCallTimerScope()
43 DCHECK(stats_->IsCounterAppropriateForThread(counter_id)); in RuntimeCallTimerScope()
44 stats_->Enter(&timer_, counter_id); in RuntimeCallTimerScope()
Druntime-call-stats.h590 RuntimeCallCounterId counter_id);
600 RuntimeCallCounterId counter_id, CounterMode mode = kExact);
643 RuntimeCallCounter* GetCounter(RuntimeCallCounterId counter_id) { in GetCounter() argument
644 return &counters_[static_cast<int>(counter_id)]; in GetCounter()
646 RuntimeCallCounter* GetCounter(int counter_id) { in GetCounter() argument
647 return &counters_[counter_id]; in GetCounter()
708 #define CHANGE_CURRENT_RUNTIME_COUNTER(runtime_call_stats, counter_id) \ argument
712 runtime_call_stats->CorrectCurrentCounterId(counter_id); \
726 RuntimeCallCounterId counter_id);
728 RuntimeCallCounterId counter_id,
[all …]
Druntime-call-stats.cc199 RuntimeCallCounterId counter_id) { in Enter() argument
201 RuntimeCallCounter* counter = GetCounter(counter_id); in Enter()
225 void RuntimeCallStats::CorrectCurrentCounterId(RuntimeCallCounterId counter_id, in CorrectCurrentCounterId() argument
229 counter_id = CounterIdForThread(counter_id); in CorrectCurrentCounterId()
231 DCHECK(IsCounterAppropriateForThread(counter_id)); in CorrectCurrentCounterId()
235 RuntimeCallCounter* counter = GetCounter(counter_id); in CorrectCurrentCounterId()
/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.cc67 uint32_t counter_id = it->as_uint32(); in OnSetup() local
68 driver->enable_counter(counter_id); in OnSetup()
/third_party/mesa3d/src/intel/ds/
Dintel_pps_driver.cc53 void IntelDriver::enable_counter(uint32_t counter_id) in enable_counter() argument
55 auto &counter = counters[counter_id]; in enable_counter()
64 for (uint32_t counter_id : groups[0].counters) { in enable_all_counters() local
65 auto &counter = counters[counter_id]; in enable_all_counters()
Dintel_pps_driver.h44 void enable_counter(uint32_t counter_id) override;
/third_party/mesa3d/src/panfrost/perf/
Dpan_gen_perf.py179 counter_id = 0
194 assert counter_id < n_counters
208 counter_id += 1
/third_party/mesa3d/src/freedreno/ds/
Dfd_pps_driver.h25 void enable_counter(uint32_t counter_id) override;
Dfd_pps_driver.cc497 FreedrenoDriver::enable_counter(const uint32_t counter_id) in enable_counter() argument
499 enabled_counters.push_back(counters[counter_id]); in enable_counter()
/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()