Home
last modified time | relevance | path

Searched refs:wallDuration (Results 1 – 21 of 21) sorted by relevance

/developtools/smartperf_host/ide/src/trace/database/logic-worker/
DProcedureLogicWorkerSPT.ts134 process.wallDuration += slice.dur;
137 process.avgDuration = (process.wallDuration / process.count).toFixed(2);
141 thread.wallDuration += slice.dur;
144 thread.avgDuration = (thread.wallDuration / thread.count).toFixed(2);
148 state.wallDuration += slice.dur;
151 state.avgDuration = (state.wallDuration / state.count).toFixed(2);
174 wallDuration: slice.dur || 0,
185 wallDuration: slice.dur || 0,
195 wallDuration: slice.dur || 0,
210 wallDuration: slice.dur || 0,
[all …]
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/cpu/
DTabPaneCpuByThread.ts81 sumWall += e.wallDuration;
98 thread.wallDuration += e.wallDuration;
111 wallDuration: e.wallDuration || 0,
129 cpuByThreadObject[`cpu${e.cpu}`] = e.wallDuration || 0;
130 cpuByThreadObject[`cpu${e.cpu}TimeStr`] = getProbablyTime(e.wallDuration || 0);
132 (100.0 * (e.wallDuration || 0)) /
138 let arr = Array.from(map.values()).sort((a, b) => b.wallDuration - a.wallDuration);
140 e.avgDuration = (e.wallDuration / (e.occurrences || 1.0) / 1000000.0).toFixed(5);
141 e.wallDuration = parseFloat((e.wallDuration / 1000000.0).toFixed(5));
145 count.wallDuration = parseFloat((sumWall / 1000000.0).toFixed(7));
DTabPaneCpuByProcess.ts56 sumWall += e.wallDuration;
58 e.wallDuration = parseFloat((e.wallDuration / 1000000.0).toFixed(5));
63 count.wallDuration = parseFloat((sumWall / 1000000.0).toFixed(5));
DTabPaneSchedPriority.ts165 priorityMapObj!.wallDuration += priorityItem.dur;
166 … priorityMapObj!.avgDuration = (priorityMapObj!.wallDuration / priorityMapObj!.count).toFixed(2);
180 stateMapObj.wallDuration = priorityItem.dur;
186 ptsPtMapObj!.wallDuration += priorityItem.dur;
187 ptsPtMapObj!.avgDuration = (ptsPtMapObj!.wallDuration / ptsPtMapObj!.count).toFixed(2);
201 ptsPtMapObj.wallDuration = priorityItem.dur;
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/irq/
DTabPaneIrqCounter.ts49 selectData.wallDuration = item.wallDuration;
50 selectData.wallDurationFormat = (item.wallDuration / 1000).toFixed(2);
51 selectData.maxDuration = item.wallDuration;
112 …return (type === 1 ? 1 : -1) * (irqCounterLeftData.wallDuration - irqCounterRightData.wallDuration
120 irqCounterLeftData.wallDuration / parseInt(irqCounterLeftData.count) -
121 irqCounterRightData.wallDuration / parseInt(irqCounterRightData.count);
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/process/
DTabPaneThreadUsage.ts96 map.get(resultEl.tid)[`cpu${resultEl.cpu}`] = resultEl.wallDuration || 0;
97 … map.get(resultEl.tid)[`cpu${resultEl.cpu}TimeStr`] = getProbablyTime(resultEl.wallDuration || 0);
99 (100.0 * (resultEl.wallDuration || 0)) /
102 map.get(resultEl.tid).wallDuration =
103 map.get(resultEl.tid).wallDuration + (resultEl.wallDuration || 0);
104 … map.get(resultEl.tid).wallDurationTimeStr = getProbablyTime(map.get(resultEl.tid).wallDuration);
113 wallDuration: resultEl.wallDuration || 0,
114 wallDurationTimeStr: getProbablyTime(resultEl.wallDuration || 0),
121 threadStatesStruct[`cpu${resultEl.cpu}`] = resultEl.wallDuration || 0;
122 … threadStatesStruct[`cpu${resultEl.cpu}TimeStr`] = getProbablyTime(resultEl.wallDuration || 0);
[all …]
DTabPaneThreadStates.ts62 let wallDuration1 = threadState1.wallDuration;
63 let wallDuration2 = threadState2.wallDuration;
94 map.get(`${pre.state}-${mapKey}`).wallDuration += pre.dur;
110 map.get(key).wallDuration += current.dur;
117 wallDuration: current.dur || 0,
141 target.get(key).wallDuration += (rightNs - Math.max(item.ts, leftNs));
147 wallDuration: rightNs - Math.max(item.ts, leftNs),
176 e.avgDuration = parseFloat(((e.wallDuration / e.occurrences) / 1000000.0).toFixed(5));
177 e.wallDuration = parseFloat((e.wallDuration / 1000000.0).toFixed(5));
178 sumWall += e.wallDuration;
[all …]
DTabPaneSlices.ts58 sumWall += processSliceItem.wallDuration;
60 …processSliceItem.wallDuration = parseFloat((processSliceItem.wallDuration / 1000000.0).toFixed(5));
65 count.wallDuration = parseFloat((sumWall / 1000000.0).toFixed(5));
/developtools/smartperf_host/ide/test/trace/component/trace/sheet/process/
DTabPaneThreadUsage.test.ts47 wallDuration: 6447000,
53 wallDuration: 4402000,
59 wallDuration: 41852000,
DTabPaneSlices.test.ts39 wallDuration: 61.847,
46 wallDuration: 1.64,
DTabPaneThreadStates.test.ts65 wallDuration: 10,
73 wallDuration: 10,
/developtools/smartperf_host/ide/test/trace/component/trace/sheet/cpu/
DTabPaneCpuByThread.test.ts56 { process: 'test', wallDuration: 10, occurrences: 10, thread: '' },
57 { process: 'test2', wallDuration: 11, occurrences: 11, thread: '' },
DTabPaneSPT.test.ts96 wallDuration: 5220,
116 wallDuration: 666240,
DTabPanePTS.test.ts85 wallDuration: 5655,
DTabPaneCounterSample.test.ts93 wallDuration: 123222,
DTabPaneFrequencySample.test.ts93 wallDuration: 565552,
/developtools/smartperf_host/ide/test/trace/component/trace/sheet/irq/
DTabPaneIrqCounter.test.ts68 wallDuration: 9536,
79 wallDuration: 6765,
/developtools/smartperf_host/ide/test/trace/bean/
DBoxSelection.test.ts98 wallDuration: 0,
120 wallDuration: expect.any(Number),
/developtools/smartperf_host/ide/src/trace/component/
DStackBar.ts33 sv!.value = sv!.value + v.wallDuration;
37 sv.value = v.wallDuration;
/developtools/smartperf_host/ide/src/trace/bean/
DStateProcessThread.ts25 wallDuration: number = 0;
DBoxSelection.ts1016 wallDuration: number = 0; property in SelectionData