/developtools/profiler/host/smartperf/ide/test/trace/component/trace/sheet/ |
D | TabPaneNMSampleList.test.ts | 44 total: 0, 78 total: 0, 130 total: 0, 150 total: 0, 166 total: 0, 182 total: 0, 241 total:1
|
/developtools/profiler/host/smartperf/ide/src/trace/component/trace/sheet/native-memory/ |
D | TabPaneNMSampleList.ts | 115 rootSample.total += merageSample.growth 155 copyTypes[index].total -= item.total 181 childSample.total = child.total 182 childSample.totalGrowth = Utils.getByteWithUnit(child.total) 304 rootSample.total = 0 310 rootSample.total += parentSample.total 313 rootSample.totalGrowth = Utils.getByteWithUnit(rootSample.total) 320 rootSample.total += rootSample.tempList[1].total 321 rootSample.totalGrowth = Utils.getByteWithUnit(rootSample.total) 333 rootSample.total += rootSample.tempList[0].total [all …]
|
/developtools/profiler/host/smartperf/ide/src/trace/component/trace/sheet/ |
D | TabPaneNMSampleList.ts | 114 rootSample.total += merageSample.growth 154 copyTypes[index].total -= item.total 180 childSample.total = child.total 181 childSample.totalGrowth = Utils.getByteWithUnit(child.total) 299 rootSample.total = 0 305 rootSample.total += parentSample.total 308 rootSample.totalGrowth = Utils.getByteWithUnit(rootSample.total) 315 rootSample.total += rootSample.tempList[1].total 316 rootSample.totalGrowth = Utils.getByteWithUnit(rootSample.total) 328 rootSample.total += rootSample.tempList[0].total [all …]
|
/developtools/profiler/host/smartperf/ide/src/trace/bean/ |
D | NativeHook.ts | 101 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
|
D | PerfProfile.ts | 109 #total = 0 142 set total(data: number) { method in PerfCallChainMerageData 143 this.#total = data; 148 get total() { method in PerfCallChainMerageData 149 return this.#total;
|
D | FrameChartStruct.ts | 45 export function setFuncFrame(node: ChartStruct, canvas_frame: Rect, total: number, mode: ChartMode)… 60 node.frame!.width = Math.floor(node.size / total * canvas_frame.width); 63 node.frame!.width = Math.floor(node.count / total * canvas_frame.width); 66 node.frame!.width = Math.floor(node.dur / total * canvas_frame.width);
|
/developtools/profiler/host/smartperf/ide/test/trace/component/trace/sheet/native-memory/ |
D | TabPaneNMSampleList.test.ts | 45 total: 0, 79 total: 0, 110 total: 0, 126 total: 0, 142 total: 0,
|
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/ |
D | Performance.ets | 127 …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/ |
D | CPU.cpp | 159 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/ |
D | StackBar.ts | 90 createBarElement(sv: StackValue, total: number): HTMLDivElement { 101 let weight = (sv.value * 1.0 / total) * 100.00 114 let weight = (sv.value * 1.0 / total) * 100.00
|
/developtools/profiler/host/smartperf/ide/src/trace/component/trace/search/ |
D | Search.ts | 34 this.total = value.length; 50 get total(): number { method in LitSearch 54 set total(value: number) { method in LitSearch
|
/developtools/profiler/host/smartperf/ide/test/trace/database/logic-worker/ |
D | ProcedureLogicWorkerCommon.test.ts | 59 merageBean.total = true; 60 expect(merageBean.total).toBeTruthy(); 65 merageBean.total = false; 66 expect(merageBean.total).toBeFalsy();
|
/developtools/profiler/host/smartperf/ide/test/trace/bean/ |
D | NativeHook.test.ts | 234 total: 0, 248 total: expect.any(Number), 281 total: 0, 295 total: expect.any(Number) }, `
|
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/profiler/item/ |
D | CPU.ets | 131 let total = user + sys + idle + iowait + irq; 135 let per_user = user * 100.0 / total; 136 let per_sys = sys * 100.0 / total; 137 let per_iowait = iowait * 100.0 / total; 138 let per_irq = irq * 100.0 / total;
|
/developtools/profiler/host/smartperf/ide/src/trace/database/logic-worker/ |
D | ProcedureLogicWorkerPerf.ts | 290 processMerageData.total = totalCount; 297 rootMerageMap[merageData.pid].total = totalCount; 303 node.total = totalCount; 376 processMerageData.total = sampleIds.length; 383 rootMerageMap[merageData.pid].total = sampleIds.length; 389 node.total = sampleIds.length; 755 #total = 0 788 set total(data: number) { 789 this.#total = data; 794 get total() { [all …]
|
D | ProcedureLogicWorkerCommon.ts | 34 #total = 0 64 set total(data: number) { method in MerageBean 65 this.#total = data; 70 get total() { method in MerageBean 71 return this.#total;
|
/developtools/profiler/host/smartperf/ide/src/trace/database/ |
D | TraceWorkerPerfDataQuery.ts | 178 processMerageData.total = sampleIds.length; 185 rootMerageMap[merageData.pid].total = sampleIds.length; 191 node.total = sampleIds.length; 656 #total = 0 689 set total(data: number) { method in PerfCallChainMerageData 690 this.#total = data; 695 get total() { method in PerfCallChainMerageData 696 return this.#total;
|
/developtools/profiler/host/smartperf/ide/src/trace/component/trace/base/ |
D | Utils.ts | 355 return array1.concat(array2).reduce(function (total, item) { 358 total.push(item) 360 return total;
|
/developtools/profiler/host/smartperf/ide/test/trace/component/trace/search/ |
D | Search.test.ts | 42 expect(search.total).toBe(0);
|
/developtools/profiler/host/smartperf/doc/ |
D | des_support_event.md | 60 sys.mem.total 74 sys.mem.swap.total 88 sys.mem.vmalloc.total 91 sys.mem.cma.total
|
D | quickstart_trace_streamer.md | 126 sys.mem.total 140 sys.mem.swap.total 154 sys.mem.vmalloc.total 157 sys.mem.cma.total
|
/developtools/profiler/host/smartperf/trace_streamer/doc/ |
D | des_support_event.md | 105 sys.mem.total 119 sys.mem.swap.total 133 sys.mem.vmalloc.total 136 sys.mem.cma.total
|
/developtools/profiler/host/smartperf/ide/src/trace/component/chart/ |
D | PerfDataQuery.ts | 160 processMerageData.total = sampleIds.length; 167 rootMerageMap[merageData.pid].total = sampleIds.length; 173 node.total = sampleIds.length;
|
D | SpChartManager.ts | 123 this.trace.timerShaftEL.totalNS = res[0].total;
|
/developtools/profiler/host/smartperf/ide/src/trace/component/hiperf/ |
D | PerfDataQuery.ts | 154 processMerageData.total = sampleIds.length; 161 rootMerageMap[merageData.pid].total = sampleIds.length; 167 node.total = sampleIds.length;
|