| /third_party/typescript/tests/baselines/reference/ |
| D | uncalledFunctionChecksInConditional2.types | 3 const perf = window.performance 4 >perf : Performance 11 perf && 12 >perf && perf.measure && perf.clearMarks && perf.clearMeasures : (measureName?: string | u… 13 >perf && perf.measure && perf.clearMarks : (markName?: string | undefined) => void 14 >perf && perf.measure : (measureName: string, startOrMeasureOptions?: string | PerformanceMeasur… 15 >perf : Performance 17 perf.measure && 18 >perf.measure : (measureName: string, startOrMeasureOptions?: string | PerformanceMeasureOptions | … 19 >perf : Performance [all …]
|
| D | uncalledFunctionChecksInConditional2.symbols | 3 const perf = window.performance 4 >perf : Symbol(perf, Decl(uncalledFunctionChecksInConditional2.ts, 1, 7)) 11 perf && 12 >perf : Symbol(perf, Decl(uncalledFunctionChecksInConditional2.ts, 1, 7)) 14 perf.measure && 15 >perf.measure : Symbol(Performance.measure, Decl(lib.dom.d.ts, --, --)) 16 >perf : Symbol(perf, Decl(uncalledFunctionChecksInConditional2.ts, 1, 7)) 19 perf.clearMarks && 20 >perf.clearMarks : Symbol(Performance.clearMarks, Decl(lib.dom.d.ts, --, --)) 21 >perf : Symbol(perf, Decl(uncalledFunctionChecksInConditional2.ts, 1, 7)) [all …]
|
| D | uncalledFunctionChecksInConditional2.js | 3 const perf = window.performance constant 7 perf && 8 perf.measure && 9 perf.clearMarks && 10 perf.clearMeasures 12 perf.measure(""); 13 perf.clearMarks("") 14 perf.clearMeasures("") 19 perf && 20 perf.mark && [all …]
|
| D | uncalledFunctionChecksInConditional2.errors.txt | 7 const perf = window.performance 11 perf && 12 perf.measure && 13 perf.clearMarks && 14 perf.clearMeasures 16 perf.measure(""); 17 perf.clearMarks("") 18 perf.clearMeasures("") 23 perf && 24 perf.mark && [all …]
|
| /third_party/typescript/tests/cases/compiler/ |
| D | uncalledFunctionChecksInConditional2.ts | 4 const perf = window.performance constant 8 perf && 9 perf.measure && 10 perf.clearMarks && 11 perf.clearMeasures 13 perf.measure(""); 14 perf.clearMarks("") 15 perf.clearMeasures("") 20 perf && 21 perf.mark && [all …]
|
| /third_party/mesa3d/src/panfrost/perf/ |
| D | pan_perf.c | 43 const struct panfrost_perf *perf) in panfrost_perf_counter_read() argument 45 unsigned offset = perf->category_offset[counter->category_index]; in panfrost_perf_counter_read() 47 assert(offset < perf->n_counter_values); in panfrost_perf_counter_read() 49 uint32_t ret = perf->counter_values[offset]; in panfrost_perf_counter_read() 53 for (uint32_t core = 1; core < perf->core_id_range; ++core) { in panfrost_perf_counter_read() 54 ret += perf->counter_values[offset + PAN_COUNTERS_PER_CATEGORY * core]; in panfrost_perf_counter_read() 73 panfrost_perf_init(struct panfrost_perf *perf, int fd) in panfrost_perf_init() argument 82 perf->dev = pan_kmod_dev_create(fd, 0, NULL); in panfrost_perf_init() 83 assert(perf->dev); in panfrost_perf_init() 86 pan_kmod_dev_query_props(perf->dev, &props); in panfrost_perf_init() [all …]
|
| /third_party/mesa3d/src/panfrost/ds/ |
| D | pan_pps_perf.cpp | 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 =() [all …]
|
| D | pan_pps_driver.cpp | 17 #include <perf/pan_perf.h> 54 PanfrostDriver::create_available_counters(const PanfrostPerf &perf) in create_available_counters() argument 61 for (uint32_t gid = 0; gid < perf.perf->cfg->n_categories; ++gid) { in create_available_counters() 62 const auto &category = perf.perf->cfg->categories[gid]; in create_available_counters() 72 uint32_t id_within_group = find_id_within_group(cid, perf.perf->cfg); in create_available_counters() 77 struct panfrost_perf *perf = pan_driver.perf->perf; in create_available_counters() local 78 uint32_t id_within_group = find_id_within_group(c.id, perf->cfg); in create_available_counters() 80 &perf->cfg->categories[c.group].counters[id_within_group]; in create_available_counters() 81 return int64_t(panfrost_perf_counter_read(counter, perf)); in create_available_counters() 101 if (!perf) { in init_perfcnt() [all …]
|
| /third_party/mesa3d/src/intel/perf/ |
| D | intel_perf.c | 49 #include "perf/i915/intel_perf.h" 50 #include "perf/xe/intel_perf.h" 51 #include "perf/intel_perf.h" 52 #include "perf/intel_perf_common.h" 53 #include "perf/intel_perf_regs.h" 54 #include "perf/intel_perf_mdapi.h" 55 #include "perf/intel_perf_metrics.h" 56 #include "perf/intel_perf_private.h" 58 #include "perf/i915/intel_perf.h" 59 #include "perf/xe/intel_perf.h" [all …]
|
| /third_party/skia/third_party/externals/harfbuzz/ |
| D | Makefile.am | 29 perf/meson.build \ 30 perf/perf-draw.hh \ 31 perf/perf-extents.hh \ 32 perf/perf-shaping.hh \ 33 perf/perf.cc \ 34 perf/fonts/Amiri-Regular.ttf \ 35 perf/fonts/NotoNastaliqUrdu-Regular.ttf \ 36 perf/fonts/NotoSansDevanagari-Regular.ttf \ 37 perf/fonts/Roboto-Regular.ttf \ 38 perf/texts/en-thelittleprince.txt \ [all …]
|
| /third_party/mesa3d/src/intel/ds/ |
| D | intel_pps_driver.cc | 21 #include "perf/intel_perf.h" 22 #include "perf/intel_perf_query.h" 40 return (2.f * perf->devinfo.timestamp_frequency) / 1000000000ull; in get_min_sampling_period_ns() 76 assert(!perf && "Intel perf should not be initialized at this point"); in init_perfcnt() 78 perf = std::make_unique<IntelPerf>(drm_device.fd); in init_perfcnt() 84 for (auto &query : perf->get_queries()) { in init_perfcnt() 96 for (auto &query : perf->get_queries()) in init_perfcnt() 125 return (int64_t)counter.oa_counter_read_uint64(perf->cfg, in init_perfcnt() 127 &perf->result); in init_perfcnt() 131 return counter.oa_counter_read_float(perf->cfg, in init_perfcnt() [all …]
|
| /third_party/astc-encoder/Test/ |
| D | astc_test_competitive_plot.py | 31 def __init__(self, name, perf, qual): argument 33 self.perf = perf 41 perf = [] 52 perf.append(float(row[2])) 55 return (perf, qual) 61 plt.scatter(series.perf, series.qual, s=2, label=series.name) 74 diff_perf = np.divide(series_a.perf, series_b.perf) 101 perf, qual = get_series(DATABASE, "ISPC", "rgba", block_size) 102 series_set.append(Series(f"{block_size} IPSC Slow", perf, qual)) 104 perf, qual = get_series(DATABASE, "ISPC", "rgb", block_size) [all …]
|
| /third_party/mesa3d/src/intel/vulkan_hasvk/ |
| D | anv_perf.c | 31 #include "perf/intel_perf.h" 32 #include "perf/intel_perf_mdapi.h" 47 struct intel_perf_config *perf = intel_perf_new(NULL); in anv_physical_device_init_perf() local 49 intel_perf_init_metrics(perf, &device->info, fd, in anv_physical_device_init_perf() 53 if (!perf->n_queries) in anv_physical_device_init_perf() 57 * perf revision 2. in anv_physical_device_init_perf() 60 if (!intel_perf_has_hold_preemption(perf)) in anv_physical_device_init_perf() 64 device->perf = perf; in anv_physical_device_init_perf() 69 const struct intel_perf_query_field_layout *layout = &perf->query_layout; in anv_physical_device_init_perf() 95 intel_perf_free(perf); in anv_physical_device_init_perf() [all …]
|
| /third_party/mesa3d/src/intel/perf/i915/ |
| D | intel_perf.c | 6 #include "perf/i915/intel_perf.h" 15 #include "perf/intel_perf.h" 16 #include "perf/intel_perf_private.h" 21 #include "perf/intel_perf_private.h" 25 uint64_t i915_perf_get_oa_format(struct intel_perf_config *perf) in i915_perf_get_oa_format() argument 27 if (perf->devinfo->verx10 <= 75) in i915_perf_get_oa_format() 29 else if (perf->devinfo->verx10 <= 120) in i915_perf_get_oa_format() 70 * Gfx11 for instance we use the full EU array. Initially when perf was in i915_perf_stream_open() 96 i915_query_perf_config_supported(struct intel_perf_config *perf, int fd) in i915_query_perf_config_supported() argument 105 i915_query_perf_config_data(struct intel_perf_config *perf, in i915_query_perf_config_data() argument [all …]
|
| /third_party/mesa3d/src/intel/vulkan/ |
| D | anv_perf.c | 31 #include "perf/intel_perf.h" 32 #include "perf/intel_perf_mdapi.h" 39 struct intel_perf_config *perf = intel_perf_new(NULL); in anv_physical_device_init_perf() local 41 intel_perf_init_metrics(perf, &device->info, fd, in anv_physical_device_init_perf() 45 if (!perf->n_queries) in anv_physical_device_init_perf() 49 * perf revision 2. in anv_physical_device_init_perf() 52 if (!intel_perf_has_hold_preemption(perf)) in anv_physical_device_init_perf() 56 device->perf = perf; in anv_physical_device_init_perf() 61 const struct intel_perf_query_field_layout *layout = &perf->query_layout; in anv_physical_device_init_perf() 88 intel_perf_free(perf); in anv_physical_device_init_perf() [all …]
|
| /third_party/skia/infra/bots/ |
| D | jobs.json | 230 {"name": "Perf-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android"}, 231 {"name": "Perf-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android_SkottieTracing"}, 232 {"name": "Perf-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Release-All-Android"}, 233 {"name": "Perf-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Release-All-Android_Vulkan"}, 234 {"name": "Perf-Android-Clang-GalaxyS9-GPU-MaliG72-arm64-Release-All-Android"}, 235 {"name": "Perf-Android-Clang-GalaxyS9-GPU-MaliG72-arm64-Release-All-Android_Vulkan"}, 236 {"name": "Perf-Android-Clang-GalaxyS20-GPU-MaliG77-arm64-Release-All-Android"}, 237 {"name": "Perf-Android-Clang-GalaxyS20-GPU-MaliG77-arm64-Release-All-Android_Vulkan"}, 238 {"name": "Perf-Android-Clang-GalaxyS20-GPU-MaliG77-arm64-Release-All-Android_Mskp_Skpbench"}, 239 {"name": "Perf-Android-Clang-GalaxyS20-GPU-MaliG77-arm64-Release-All-Android_Skpbench"}, [all …]
|
| /third_party/skia/third_party/externals/harfbuzz/perf/ |
| D | perf-shaping.hh | 40 "perf/texts/fa-thelittleprince.txt", 42 "perf/fonts/Amiri-Regular.ttf"); 44 "perf/texts/fa-thelittleprince.txt", 46 "perf/fonts/NotoNastaliqUrdu-Regular.ttf"); 49 "perf/texts/fa-monologue.txt", 51 "perf/fonts/Amiri-Regular.ttf"); 53 "perf/texts/fa-monologue.txt", 55 "perf/fonts/NotoNastaliqUrdu-Regular.ttf"); 58 "perf/texts/en-thelittleprince.txt", 60 "perf/fonts/Roboto-Regular.ttf"); [all …]
|
| /third_party/skia/infra/bots/recipes/upload_buildstats_results.expected/ |
| D | trybot.json | 10 "[START_DIR]/perf", 13 "cwd": "[START_DIR]/perf", 17 "@@@STEP_LOG_LINE@glob@[START_DIR]/perf/buildstats_abc123.json@@@", 18 "@@@STEP_LOG_LINE@glob@[START_DIR]/perf/buildstats_def.json@@@", 28 "[START_DIR]/perf/buildstats_abc123.json", 29 …"gs://skia-perf/trybot/buildstats-json-v1/2012/05/14/12/BuildStats-Debian10-EMCC-wasm-Release-Path… 32 "name": "upload [START_DIR]/perf/buildstats_abc123.json" 40 "[START_DIR]/perf/buildstats_def.json", 41 …"gs://skia-perf/trybot/buildstats-json-v1/2012/05/14/12/BuildStats-Debian10-EMCC-wasm-Release-Path… 44 "name": "upload [START_DIR]/perf/buildstats_def.json"
|
| D | normal_bot.json | 10 "[START_DIR]/perf", 13 "cwd": "[START_DIR]/perf", 17 "@@@STEP_LOG_LINE@glob@[START_DIR]/perf/buildstats_abc123.json@@@", 18 "@@@STEP_LOG_LINE@glob@[START_DIR]/perf/buildstats_def.json@@@", 28 "[START_DIR]/perf/buildstats_abc123.json", 29 …"gs://skia-perf/buildstats-json-v1/2012/05/14/12/BuildStats-Debian10-EMCC-wasm-Release-PathKit/abc… 32 "name": "upload [START_DIR]/perf/buildstats_abc123.json" 40 "[START_DIR]/perf/buildstats_def.json", 41 …"gs://skia-perf/buildstats-json-v1/2012/05/14/12/BuildStats-Debian10-EMCC-wasm-Release-PathKit/abc… 44 "name": "upload [START_DIR]/perf/buildstats_def.json"
|
| /third_party/skia/m133/infra/bots/recipes/upload_buildstats_results.expected/ |
| D | trybot.json | 10 "[START_DIR]/perf", 13 "cwd": "[START_DIR]/perf", 17 "@@@STEP_LOG_LINE@glob@[START_DIR]/perf/buildstats_abc123.json@@@", 18 "@@@STEP_LOG_LINE@glob@[START_DIR]/perf/buildstats_def.json@@@", 28 "[START_DIR]/perf/buildstats_abc123.json", 29 …"gs://skia-perf/trybot/buildstats-json-v1/2012/05/14/12/BuildStats-Debian10-EMCC-wasm-Release-Path… 32 "name": "upload [START_DIR]/perf/buildstats_abc123.json" 40 "[START_DIR]/perf/buildstats_def.json", 41 …"gs://skia-perf/trybot/buildstats-json-v1/2012/05/14/12/BuildStats-Debian10-EMCC-wasm-Release-Path… 44 "name": "upload [START_DIR]/perf/buildstats_def.json"
|
| D | normal_bot.json | 10 "[START_DIR]/perf", 13 "cwd": "[START_DIR]/perf", 17 "@@@STEP_LOG_LINE@glob@[START_DIR]/perf/buildstats_abc123.json@@@", 18 "@@@STEP_LOG_LINE@glob@[START_DIR]/perf/buildstats_def.json@@@", 28 "[START_DIR]/perf/buildstats_abc123.json", 29 …"gs://skia-perf/buildstats-json-v1/2012/05/14/12/BuildStats-Debian10-EMCC-wasm-Release-PathKit/abc… 32 "name": "upload [START_DIR]/perf/buildstats_abc123.json" 40 "[START_DIR]/perf/buildstats_def.json", 41 …"gs://skia-perf/buildstats-json-v1/2012/05/14/12/BuildStats-Debian10-EMCC-wasm-Release-PathKit/abc… 44 "name": "upload [START_DIR]/perf/buildstats_def.json"
|
| /third_party/skia/platform_tools/android/bin/ |
| D | android_perf | 3 # android_perf: utility for running perf on an android device 6 # 1) perf record [gm/tests/bench] # runs profiler on specified app 7 # 2) perf report # prints profiler results 8 # 3) perf clean # cleans the temporary directory used to store results 15 # grab and remove the perf command from the input args 65 # PERF, BUT AT THIS POINT THE DATA FILE WE GET WHEN GOING THAT ROUTE IS UNABLE 69 $ADB shell /data/local/tmp/simpleperf record -p ${APP_PID} -o /data/local/tmp/perf.data sleep 70 71 $ADB pull /data/local/tmp/perf.data $PERF_TMP_DIR/perf.data 77 adb_pull_if_needed /data/local/tmp/perf.data $PERF_TMP_DIR/perf.data 78 $SKIA_OUT/perfhost_report.py -i $PERF_TMP_DIR/perf.data --symfs=$PERF_TMP_DIR ${runVars[@]} [all …]
|
| /third_party/skia/m133/platform_tools/android/bin/ |
| D | android_perf | 3 # android_perf: utility for running perf on an android device 6 # 1) perf record [gm/tests/bench] # runs profiler on specified app 7 # 2) perf report # prints profiler results 8 # 3) perf clean # cleans the temporary directory used to store results 15 # grab and remove the perf command from the input args 65 # PERF, BUT AT THIS POINT THE DATA FILE WE GET WHEN GOING THAT ROUTE IS UNABLE 69 $ADB shell /data/local/tmp/simpleperf record -p ${APP_PID} -o /data/local/tmp/perf.data sleep 70 71 $ADB pull /data/local/tmp/perf.data $PERF_TMP_DIR/perf.data 77 adb_pull_if_needed /data/local/tmp/perf.data $PERF_TMP_DIR/perf.data 78 $SKIA_OUT/perfhost_report.py -i $PERF_TMP_DIR/perf.data --symfs=$PERF_TMP_DIR ${runVars[@]} [all …]
|
| /third_party/skia/site/docs/dev/testing/ |
| D | skiaperf.md | 3 title: "Skia Perf" 4 linkTitle: "Skia Perf" 9 [Skia Perf](https://perf.skia.org) is a web application for analyzing and 12 <img src=../Perf.png style="margin-left:30px" align="left" width="800"/> <br clear="left"> 16 Perf, consisting mostly of performance benchmark results, but also including 19 Perf offers clustering, which is a tool to pick out trends and patterns in large sets of traces. 30 Skia Perf has the ability to perform calculations over the test data 44 See Skia Perf for the [full list of functions available](https://perf.skia.org/help/).
|
| /third_party/skia/m133/site/docs/dev/testing/ |
| D | skiaperf.md | 3 title: "Skia Perf" 4 linkTitle: "Skia Perf" 9 [Skia Perf](https://perf.skia.org) is a web application for analyzing and 12 <img src=../Perf.png style="margin-left:30px" align="left" width="800"/> <br clear="left"> 16 Perf, consisting mostly of performance benchmark results, but also including 19 Perf offers clustering, which is a tool to pick out trends and patterns in large sets of traces. 30 Skia Perf has the ability to perform calculations over the test data 44 See Skia Perf for the [full list of functions available](https://perf.skia.org/help/).
|