Home
last modified time | relevance | path

Searched refs:total (Results 1 – 25 of 91) sorted by relevance

1234

/developtools/smartperf_host/ide/src/trace/component/trace/sheet/ability/
DTabPaneDmaAbility.ts31 private total: Dma = new Dma(); property in TabPaneDmaAbility
76 this.total = new Dma();
77 this.total.process = '*All*';
85 this.total.avgSize += dmaItem.avgSize;
86 if (this.total.minSize < 0) {
87 this.total.minSize = dmaItem.minSize;
89 if (this.total.maxSize < 0) {
90 this.total.maxSize = dmaItem.maxSize;
92 this.total.minSize = Math.min(this.total.minSize, dmaItem.minSize);
93 this.total.maxSize = Math.max(this.total.maxSize, dmaItem.maxSize);
[all …]
DTabPaneGpuMemoryAbility.ts33 private total: GpuMemory = new GpuMemory(); property in TabPaneGpuMemoryAbility
80 this.total = new GpuMemory();
81 this.total.process = '*All*';
82 this.total.gpuName = '*All*';
90 this.total.avgSize += gpuMemoryItem.avgSize;
91 if (this.total.minSize < 0) {
92 this.total.minSize = gpuMemoryItem.minSize;
94 if (this.total.maxSize < 0) {
95 this.total.maxSize = gpuMemoryItem.maxSize;
97 this.total.minSize = Math.min(this.total.minSize, gpuMemoryItem.minSize);
[all …]
DTabPanePurgTotal.ts58 let total = this.totalData(this.purgeableTotalSource);
59 this.purgeableTotalSource.unshift(total);
83 let total = this.totalData(this.purgeableTotalSource);
84 this.purgeableTotalSource.unshift(total);
164 let total = this.totalData(this.purgeableTotalSource);
165 this.purgeableTotalSource.unshift(total);
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/vmtracker/
DTabPaneGpuMemoryVmTracker.ts32 private total: GpuMemory = new GpuMemory(); property in TabPaneGpuMemoryVmTracker
68 this.total = new GpuMemory();
69 this.total.thread = '*All*';
70 this.total.gpuName = '*All*';
77 this.total.avgSize += item.avgSize;
78 if (this.total.minSize < 0) {
79 this.total.minSize = item.minSize;
81 if (this.total.maxSize < 0) {
82 this.total.maxSize = item.maxSize;
84 this.total.minSize = Math.min(this.total.minSize, item.minSize);
[all …]
/developtools/smartperf_host/ide/test/base-ui/chart/column/
DLitChartColumn.test.ts52 total: 45,
61 total: 13,
80 let total = 0; variable
82 total += obj.obj.total;
106 total: 121,
115 total: 131,
/developtools/smartperf_host/ide/test/trace/component/trace/sheet/native-memory/
DTabPaneNMSampleList.test.ts50 total: 980,
86 total: 0,
103 total: 332,
120 total: 9855,
154 total: 990,
170 total: 400,
186 total: 500,
247 total: 100,
271 total: 200,
295 total: 70,
[all …]
/developtools/smartperf_host/ide/test/trace/database/logic-worker/
DProcedureLogicWorkerSchedulingAnalysis.test.ts38 total: 2,
216 total: 2,
233 total: 2,
250 total: 2,
267 total: 2,
284 total: 2,
301 total: 2,
318 total: 2,
335 total: 2,
352 total: 2,
[all …]
/developtools/profiler/host/smartperf/ide/src/trace/component/trace/sheet/native-memory/
DTabPaneNMSampleList.ts126 rootSample.total += merageSample.growth;
169 copyTypes[index].total -= item.total;
195 childSample.total = child.total;
196 childSample.totalGrowth = Utils.getByteWithUnit(child.total);
318 nmRootSample.total = 0;
324 nmRootSample.total += parentSample.total;
327 nmRootSample.totalGrowth = Utils.getByteWithUnit(nmRootSample.total);
334 nmRootSample.total += nmRootSample.tempList[1].total;
335 nmRootSample.totalGrowth = Utils.getByteWithUnit(nmRootSample.total);
347 nmRootSample.total += nmRootSample.tempList[0].total;
[all …]
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/native-memory/
DTabPaneNMSampleList.ts126 rootSample.total += merageSample.growth;
169 copyTypes[index].total -= item.total;
195 childSample.total = child.total;
196 childSample.totalGrowth = Utils.getByteWithUnit(child.total);
318 nmRootSample.total = 0;
324 nmRootSample.total += parentSample.total;
327 nmRootSample.totalGrowth = Utils.getByteWithUnit(nmRootSample.total);
334 nmRootSample.total += nmRootSample.tempList[1].total;
335 nmRootSample.totalGrowth = Utils.getByteWithUnit(nmRootSample.total);
347 nmRootSample.total += nmRootSample.tempList[0].total;
[all …]
/developtools/smartperf_host/ide/test/trace/component/schedulingAnalysis/
DTop20ThreadCpuUsage.test.ts39 total: 112,
60 total: 1,
82 total: 65,
98 total: 120,
114 total: 322,
/developtools/smartperf_host/ide/src/trace/bean/
DNativeHook.ts101 total: number = 0; property in NativeHookSamplerInfo
115 this.total += merageObj.total;
118 this.totalGrowth = Utils.getByteWithUnit(this.total);
133 total: number = 0; property in NativeHookSampleQueryInfo
DPerfBottomUpStruct.ts46 const sum = this.children.reduce((total, obj) => total + obj.totalTime, 0);
DFrameChartStruct.ts59 export function setFuncFrame(node: ChartStruct, canvas_frame: Rect, total: number, mode: ChartMode)…
74 node.frame!.width = Math.floor(((node.drawSize || node.size) / total) * canvas_frame.width);
77 … node.frame!.width = Math.floor(((node.drawCount || node.count) / total) * canvas_frame.width);
80 node.frame!.width = Math.floor(((node.drawDur || node.dur) / total) * canvas_frame.width);
/developtools/profiler/host/smartperf/ide/src/trace/bean/
DNativeHook.ts101 total: number = 0; property in NativeHookSamplerInfo
115 this.total += merageObj.total;
118 this.totalGrowth = Utils.getByteWithUnit(this.total);
133 total: number = 0; property in NativeHookSampleQueryInfo
DFrameChartStruct.ts59 export function setFuncFrame(node: ChartStruct, canvas_frame: Rect, total: number, mode: ChartMode)…
74 node.frame!.width = Math.floor(((node.drawSize || node.size) / total) * canvas_frame.width);
77 … node.frame!.width = Math.floor(((node.drawCount || node.count) / total) * canvas_frame.width);
80 node.frame!.width = Math.floor(((node.drawDur || node.dur) / total) * canvas_frame.width);
/developtools/profiler/host/smartperf/ide/src/trace/component/chart/
DSpChartManager.ts177 let total = res[0].total;
180 if (total === 0 && startNS === endNS) {
181 total = 1;
184 this.trace.timerShaftEL.totalNS = total;
186 this.trace.timerShaftEL.setRangeNS(0,total);
189 (window as any).totalNS = total;
/developtools/smartperf_host/ide/src/trace/component/chart/
DSpChartManager.ts191 let total = res[0].total;
194 if (total === 0 && startNS === endNS) {
195 total = 1;
198 this.trace.timerShaftEL.totalNS = total;
200 this.trace.timerShaftEL.setRangeNS(0, total);
203 (window as any).totalNS = total;
/developtools/profiler/host/smartperf/ide/src/trace/component/schedulingAnalysis/
DTop20ThreadCpuUsage.ts53 total: { key: '', sort: 0 },
258 total: it.total,
309 let total = 0;
311 total += obj.obj.total;
324 … ${a.length > 1 ? `<div>total:${getProbablyTime(total)}</div>` : ''}
361 total: obj.big,
371 total: obj.mid,
381 total: obj.small,
392 total: obj[type],
/developtools/smartperf_host/ide/src/trace/component/schedulingAnalysis/
DTop20ThreadCpuUsage.ts53 total: { key: '', sort: 0 },
258 total: it.total,
309 let total = 0;
311 total += obj.obj.total;
324 … ${a.length > 1 ? `<div>total:${getProbablyTime(total)}</div>` : ''}
361 total: obj.big,
371 total: obj.mid,
381 total: obj.small,
392 total: obj[type],
/developtools/smartperf_host/ide/src/trace/database/logic-worker/
DProcedureLogicWorkerSchedulingAnalysis.ts49 this.totalDur = data.params.total;
703 sumBig += item.total;
708 sumMid += item.total;
713 sumSmall += item.total;
716 tidObj.big += cpuType === 'big' ? item.total : 0;
717 tidObj.mid += cpuType === 'mid' ? item.total : 0;
718 tidObj.small += cpuType === 'small' ? item.total : 0;
719 tidObj.total += item.total;
720 tidObj[`cpu${item.cpu}`] = item.total;
727 total: item.total,
[all …]
/developtools/profiler/host/smartperf/ide/src/trace/database/logic-worker/
DProcedureLogicWorkerSchedulingAnalysis.ts49 this.totalDur = data.params.total;
714 sumBig += item.total;
719 sumMid += item.total;
724 sumSmall += item.total;
727 tidObj.big += cpuType === 'big' ? item.total : 0;
728 tidObj.mid += cpuType === 'mid' ? item.total : 0;
729 tidObj.small += cpuType === 'small' ? item.total : 0;
730 tidObj.total += item.total;
731 tidObj[`cpu${item.cpu}`] = item.total;
738 total: item.total,
[all …]
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/
DPerformance.ets127 …SPLogger.DEBUG(TAG, "value start : " + lostFrameMap.get(key).toString() + "total: " + sumLostFram…
142 private getPercent(value: number, total: number): String {
143 SPLogger.DEBUG(TAG, "value end : " + value + "total: " + total);
144 if (isNaN(value) || isNaN(total)) {
147 …let result: String = total <= 0 ? "0.00%" : (Math.round(value / total * 10000) / 100.00).toFixed(2…
148 SPLogger.DEBUG(TAG, "value value / total * 10000 : " + value / total * 10000);
149 …SPLogger.DEBUG(TAG, "value Math.round(value / total * 10000) : " + Math.round(value / total * 1000…
150 …SPLogger.DEBUG(TAG, "value Math.round(value / total * 10000) : " + (Math.round(value / total * 100…
/developtools/profiler/host/smartperf/client/client_command/
DCPU.cpp159 size_t total = user + sys + idle + iowait + irq; in CacWorkload() local
161 double perUser = std::atof(std::to_string(user * 100.0 / total).c_str()); in CacWorkload()
162 double perSys = std::atof(std::to_string(sys * 100.0 / total).c_str()); in CacWorkload()
163 double periowait = std::atof(std::to_string(iowait * 100.0 / total).c_str()); in CacWorkload()
164 double perirq = std::atof(std::to_string(irq * 100.0 / total).c_str()); in CacWorkload()
/developtools/profiler/host/smartperf/ide/src/trace/component/
DStackBar.ts90 createBarElement(sv: StackValue, total: number): HTMLDivElement {
101 let weight = ((sv.value * 1.0) / total) * 100.0;
114 let weight = ((sv.value * 1.0) / total) * 100.0;
/developtools/smartperf_host/ide/src/trace/component/
DStackBar.ts90 createBarElement(sv: StackValue, total: number): HTMLDivElement {
101 let weight = ((sv.value * 1.0) / total) * 100.0;
114 let weight = ((sv.value * 1.0) / total) * 100.0;

1234