/third_party/node/deps/v8/src/logging/ |
D | runtime-call-stats-scope.h | 27 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()
|
D | runtime-call-stats.h | 590 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 …]
|
D | runtime-call-stats.cc | 199 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/ |
D | pan_pps_driver.cc | 38 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()
|
D | pan_pps_driver.h | 38 void enable_counter(uint32_t counter_id) override;
|
/third_party/mesa3d/src/tool/pps/ |
D | pps_config.cc | 73 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()
|
D | pps_driver.h | 52 virtual void enable_counter(uint32_t counter_id) = 0;
|
D | pps_datasource.cc | 67 uint32_t counter_id = it->as_uint32(); in OnSetup() local 68 driver->enable_counter(counter_id); in OnSetup()
|
/third_party/mesa3d/src/intel/ds/ |
D | intel_pps_driver.cc | 53 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()
|
D | intel_pps_driver.h | 44 void enable_counter(uint32_t counter_id) override;
|
/third_party/mesa3d/src/panfrost/perf/ |
D | pan_gen_perf.py | 179 counter_id = 0 194 assert counter_id < n_counters 208 counter_id += 1
|
/third_party/mesa3d/src/freedreno/ds/ |
D | fd_pps_driver.h | 25 void enable_counter(uint32_t counter_id) override;
|
D | fd_pps_driver.cc | 497 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/ |
D | main.cpp | 410 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()
|
D | spirv_cross_c.h | 1005 … spvc_variable_id *counter_id);
|
D | spirv_cross.hpp | 496 bool buffer_get_hlsl_counter_buffer(VariableID id, uint32_t &counter_id) const;
|
D | spirv_cross_c.cpp | 2430 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()
|
D | spirv_cross.cpp | 4414 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()
|