Home
last modified time | relevance | path

Searched refs:min (Results 1 – 25 of 101) sorted by relevance

12345

/developtools/profiler/host/smartperf/trace_streamer/src/parser/htrace_parser/
Dhtrace_plugin_time_parser.cpp32 minTs_ = std::min(minTs_, asyncTimestamp); in UpdatePluginTimeRange()
35 syncHtracePluginStartTime_ = std::min(syncHtracePluginStartTime_, syncTimestamp); in UpdatePluginTimeRange()
40 syncHtracePluginStartTime_ = std::min(syncHtracePluginStartTime_, syncTimestamp); in UpdatePluginTimeRange()
43 asyncHtracePluginStartTime_ = std::min(asyncHtracePluginStartTime_, syncTimestamp); in UpdatePluginTimeRange()
/developtools/profiler/host/smartperf/ide/src/trace/component/trace/sheet/freq/
DTabPaneCpuFreqLimits.ts93 limit.value = isMax?item.max!:item.min!;
102 let min = Math.min((item.startNs||0)+item.dur,end) variable
103 if(max < min){
105 let minId = `${item.cpu}-${item.min}-min`
106 groupMapData(min - max,maxId,item)
107 groupMapData(min - max,minId,item)
DTabPaneFreqLimit.ts31 minFreq:`${ColorUtils.formatNumberComma(freq.min!)} kHz`,
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/components/
DYAxis.ets64 * flag indicating that auto scale min restriction should be used
363 width = Math.max(minWidth, Math.min(width, maxWidth > 0.0 ? maxWidth : width));
396 * Returns true if autoscale restriction for axis min value is enabled
404 * Sets autoscale restriction for axis min value as enabled/disabled
431 var min : number = dataMin;
434 // Make sure max is greater than min
436 if (min > max)
440 var t : number = min;
441 min = max;
446 min = max < 0 ? max * 1.5 : max * 0.5;
[all …]
DAxisBase.ets135 * flag indicating that the axis-min value has been customized
348 * sets the number of label entries for the y-axis max = 25, min = 2, default: 6, be aware
691 * Returns true if the axis min value has been customized (and is not calculated automatically)
706 * @param min
708 public setAxisMinimum(min: number): void {
710 this.mAxisMinimum = min;
711 this.mAxisRange = Math.abs(this.mAxisMaximum - min);
717 * @param min
719 public setAxisMinValue(min: number): void {
720 this.setAxisMinimum(min);
[all …]
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/formatter/
DDefaultFillFormatter.ets42 var min:number;
49 min = 0;
51 min = chartMinY;
53 fillMin = dataSet.getYMin() >= 0 ? min : max;
/developtools/profiler/host/smartperf/trace_streamer/src/parser/ebpf_parser/
Debpf_data_parser.cpp68 …ebpfAllEventStartTime_ = std::min(FileSystemDataParser::timeParser_->GetPluginStartTime(), ebpfAll… in Finish()
69 …ebpfAllEventStartTime_ = std::min(PagedMemoryDataParser::timeParser_->GetPluginStartTime(), ebpfAl… in Finish()
70 …ebpfAllEventStartTime_ = std::min(BioLatencyDataParser::timeParser_->GetPluginStartTime(), ebpfAll… in Finish()
/developtools/profiler/host/smartperf/ide/src/trace/component/metrics/
DMemStrategy.ts30 min: minNum,
57 min: number property
/developtools/profiler/host/smartperf/client/client_command/
Dsp_utils.cpp232 std::string min; in GetCpuInfo() local
233 LoadFile(policyFiles[i] + "/cpuinfo_min_freq", min); in GetCpuInfo()
237 resultMap[nameBase + "min"] = min; in GetCpuInfo()
252 std::string min; in GetGpuInfo() local
253 SPUtils::LoadFile(path + "/min_freq", min); in GetGpuInfo()
255 resultMap["gpu_min_freq"] = min; in GetGpuInfo()
/developtools/profiler/host/smartperf/ide/test/trace/component/chart/
DSpFreqChart.test.ts38 min: 20,
44 min: 100,
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/utils/
DColorTemplate.ets51 var min = arr[0];
56 s = 1 - (min / max);
58 if (max === min) {
59 h = 0;//事实上,max===min的时候,h无论为多少都无所谓
61 h = 60 * ((g - b) / (max - min)) + 0;
63 h = 60 * ((g - b) / (max - min)) + 360
65 h = 60 * ((b - r) / (max - min)) + 120
67 h = 60 * ((r - g) / (max - min)) + 240
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/renderer/
DAxisRenderer.ets123 * @param min - the minimum value in the data object for this axis
126 public computeAxis(min: number, max: number, inverted: boolean) {
137 min = p2.y;
141 min = p1.y;
149 this.computeAxisValues(min, max);
157 protected computeAxisValues(min: number, max: number) {
159 var yMin = min;
206 var v = min;
DBarLineScatterCandleBubbleRenderer.ets35 public min: number;
56 let phaseX: number = Math.max(0, Math.min(1, mAnimator.getPhaseX()));
64 this.min = entryFrom == null ? 0 : dataSet.getEntryIndexByEntry(entryFrom);
66 this.range = ((this.max - this.min) * phaseX);
DLineChartRenderer.ets33 private min; max: number;
228 let high = Math.min(mXAxis.mAxisMaximum, posForGetHighestVisibleX.x);
233 this.min = entryFrom == null ? 0 : dataSet.getEntryIndexByEntry(entryFrom);
245 let firstIndex: number = this.min + 1;
246 let lastIndex: number = this.min + this.range;
277 for (let j = this.min + 1; j <= this.range + this.min; j++) {
381 let high = Math.min(mXAxis.mAxisMaximum, posForGetHighestVisibleX.x);
386 this.min = entryFrom == null ? 0 : dataSet.getEntryIndexByEntry(entryFrom);
392 let prev: EntryOhos = dataSet.getEntryForIndex(this.min);
416 for (let j = this.min + 1; j <= this.range + this.min; j++) {
/developtools/profiler/host/smartperf/ide/src/trace/component/trace/sheet/
DTabPaneCounter.ts137 selectData.min = first.value + "";
142 if (counter.value < parseInt(selectData.min)) {
143 selectData.min = counter.value.toString();
/developtools/profiler/host/smartperf/ide/test/trace/bean/
DBoxSelection.test.ts108 min: "min",
129 min: expect.any(String),
/developtools/ace_js2bundle/ace-loader/test/rich/common/css/
Dmedia.css1 @media screen and (min-width: 600) and (max-width: 1200) {
/developtools/profiler/host/smartperf/ide/src/trace/component/trace/sheet/process/
DTabPaneCounter.ts142 selectData.min = first.value + "";
147 if (counter.value < parseInt(selectData.min)) {
148 selectData.min = counter.value.toString();
/developtools/hiperf/test/fuzztest/clientapi_fuzzer/
DClientApi_fuzzer.cpp29 for (size_t i = 0; i < std::min(MAX_TEST_ARGS_LEN, size); i++) { in DataToStringVector()
45 for (size_t i = 0; i < std::min(MAX_TEST_ARGS_LEN, size); i++) { in DataToPidVector()
/developtools/profiler/host/smartperf/client/client_ui/
DREADME_zh.md64 |trace采集|当帧绘制时间超过100ms以上会自动抓取trace,1min内只抓取1次。 |
132 …2)Trace抓取:当帧绘制时间超过100ms以上会自动抓取trace,1min内只抓取1次,目录在/data目录下,trace文件较大,建议定期清除(文件名称为:mynewtrace[当前时间戳…
/developtools/ace_js2bundle/ace-loader/plugin/templater/
Dlite_component_map.js176 min: { property
230 min: { property
/developtools/profiler/host/smartperf/ide/src/trace/bean/
DBoxSelection.ts83 min: string = "" property in SelectionData
/developtools/profiler/host/smartperf/ide/src/trace/component/trace/timer-shaft/
DRangeRuler.ts178 let min = 0;
184 min = this.scales[index - 1];
186 min = 0;
189 weight = (l20 - min) * 1.0 / (max - min);
193 this.scale = min;
/developtools/hiperf/test/fuzztest/commandline_fuzzer/
DCommandLine_fuzzer.cpp45 for (size_t i = 0; i < std::min(MAX_TEST_ARGS_LEN, size); i++) { in FuzzCommandLine()
/developtools/ace_js2bundle/ace-loader/test/lite/testcase/pages/exteriorStyle/
DexteriorStyle.css95 @media screen and (min-width: 455px) {

12345