Home
last modified time | relevance | path

Searched refs:heapSize (Results 1 – 14 of 14) sorted by relevance

/developtools/smartperf_host/ide/src/trace/database/data-trafic/
DNativeMemoryDataReceiver.ts27 heapSize: number; property
97 heapSize: 0,
103 item.heapSize = ne.heapSize;
106 item.heapSize = 0 - ne.heapSize;
109 maxSize: item.heapSize,
110 minSize: item.heapSize,
128 item.heapSize = last.heapSize! + tempSize + ne.heapSize;
131 item.heapSize = last.heapSize! + tempSize - ne.heapSize;
137 data.maxSize = Math.max(item.heapSize, data.maxSize);
138 data.minSize = Math.min(item.heapSize, data.minSize);
[all …]
DNativeMemoryDataSender.ts72 let heapSize = new Int32Array(res.heapSize);
77 heapsize: heapSize[i],
/developtools/smartperf_host/ide/src/trace/bean/
DNativeHook.ts24 heapSize: number = 0; property in NativeHookStatistics
40 heapSize: number = 0; property in NativeHookMalloc
85 heapSize: number = 0; property in NativeMemory
98 heapSize: number = 0; property in NativeHookSamplerInfo
113 this.heapSize += merageObj.heapSize;
116 this.growth = Utils.getByteWithUnit(this.heapSize);
149 heapSize: number = 0; property in NativeHookCallInfo
160 heapSize: number = 0; property in NativeEvent
/developtools/smartperf_host/ide/test/trace/bean/
DNativeHook.test.ts39 heapSize: 0,
55 heapSize: expect.any(Number),
86 heapSize: 0,
97 heapSize: expect.any(Number),
205 heapSize: 0,
221 heapSize: expect.any(Number),
249 heapSize: 0,
264 heapSize: expect.any(Number),
340 heapSize: 0,
355 heapSize: expect.any(Number),
[all …]
/developtools/smartperf_host/ide/test/trace/component/trace/sheet/native-memory/
DTabPaneNMSampleList.test.ts40 heapSize: 10,
92 heapSize: 23,
109 heapSize: 98,
143 heapSize: 99,
159 heapSize: 40,
175 heapSize: 50,
236 heapSize: 10,
264 heapSize: 20,
292 heapSize: 123,
320 heapSize: 30,
[all …]
DTabPaneNMStatstics.test.ts52 heapSize: 0,
109 heapSize: 0,
173 heapSize: 7,
237 heapSize: 97,
301 heapSize: 31,
364 heapSize: 31,
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/native-memory/
DTabPaneNMSampleList.ts123 childSample.heapSize = merageSample.growth;
207 childSample.heapSize = child.growth;
232 currentSample.heapSize -= rootSample.heapSize;
233 currentSample.growth = Utils.getByteWithUnit(currentSample.heapSize);
339 nmRootSample.heapSize = 0;
345 nmRootSample.heapSize += parentSample.heapSize;
349 nmRootSample.growth = Utils.getByteWithUnit(nmRootSample.heapSize);
354 nmRootSample.heapSize += nmRootSample.tempList[1].heapSize;
356 nmRootSample.growth = Utils.getByteWithUnit(nmRootSample.heapSize);
367 nmRootSample.heapSize += nmRootSample.tempList[0].heapSize;
[all …]
DTabPaneNMStatstics.ts108 data.memoryTap = `Malloc ${Utils.getByteWithUnit(malloc.heapSize)}`;
110 data.memoryTap = `Mmap ${Utils.getByteWithUnit(malloc.heapSize)}`;
118 data.max = malloc.heapSize;
122 data.maxStr = Utils.getByteWithUnit(malloc.heapSize);
DTabPaneNMemory.ts305 this.memoryTbl!.itemTextHandleMap.set('heapSize', (heapSize) => {
306 return getByteWithUnit(heapSize);
DTabPaneNMCallTree.ts294 if (merageBean.heapSize > maxDur) {
295 maxDur = merageBean.heapSize;
/developtools/smartperf_host/ide/src/trace/database/logic-worker/
DProcedureLogicWorkerNativeNemory.ts487 stack.size += hook.heapSize;
504 stack.size = hook.heapSize;
537 return item.eventType === 'AllocEvent' && item.heapSize === selectionElement.max;
539 …return item.eventType === 'MmapEvent' && item.heapSize === selectionElement.max && item.subTypeId …
641 …const analysisSample = new AnalysisSample(sample.id, sample.heapSize, count, sample.eventType, sam…
729 totalSize += nativeHookSample.heapSize;
781 threadMerageData.heapSize = merageData.heapSize;
791 rootMerageMap[merageData.tid].heapSize += merageData.heapSize;
877 filterAllocation = item.heapSize > item.freeSize;
879 filterAllocation = item.heapSize === item.freeSize;
[all …]
DProcedureLogicWorkerCommon.ts598 heapSize: number = 0;
/developtools/smartperf_host/ide/test/trace/database/logic-worker/
DProcedureLogicWorkerNativeNemory.test.ts47 heapSize: 0,
74 heapSize: 0,
91 heapSize: 0,
/developtools/hiperf/src/
Dperf_events.cpp1203 size_t heapSize = MmapRecordHeap_.size(); in ReadRecordsFromMmaps() local
1204 while (heapSize > 1) { in ReadRecordsFromMmaps()
1205 std::pop_heap(MmapRecordHeap_.begin(), MmapRecordHeap_.begin() + heapSize, in ReadRecordsFromMmaps()
1207 MoveRecordToBuf(*MmapRecordHeap_[heapSize - 1]); in ReadRecordsFromMmaps()
1208 if (GetRecordFromMmap(*MmapRecordHeap_[heapSize - 1])) { in ReadRecordsFromMmaps()
1209 std::push_heap(MmapRecordHeap_.begin(), MmapRecordHeap_.begin() + heapSize, in ReadRecordsFromMmaps()
1212 heapSize--; in ReadRecordsFromMmaps()