Home
last modified time | relevance | path

Searched refs:sizeResult (Results 1 – 2 of 2) sorted by relevance

/frameworks/native/libs/renderengine/skia/debug/
DSkiaMemoryReporter.cpp64 auto sizeResult = mCurrentValues.find("size"); in processCurrentElement() local
65 if (sizeResult != mCurrentValues.end() && sizeResult->second.value > 0) { in processCurrentElement()
67 mTotalSize.value += sizeResult->second.value; in processCurrentElement()
94 auto totalResult = resourceValues.find(sizeResult->first); in processCurrentElement()
96 ALOGE_IF(sizeResult->second.units != totalResult->second.units, in processCurrentElement()
99 totalResult->second.value += sizeResult->second.value; in processCurrentElement()
106 results.insert({resourceName, {{sizeResult->first, sizeResult->second}}}); in processCurrentElement()
/frameworks/base/libs/hwui/pipeline/skia/
DSkiaMemoryTracer.cpp47 auto sizeResult = mCurrentValues.find("size"); in processElement() local
48 if (sizeResult != mCurrentValues.end()) { in processElement()
49 mTotalSize.value += sizeResult->second.value; in processElement()
74 const char* key = (mItemizeType) ? type : sizeResult->first; in processElement()
99 SkASSERT(sizeResult->second.units == typeResult->second.units); in processElement()
100 typeResult->second.value += sizeResult->second.value; in processElement()
103 resourceValues.insert({key, sizeResult->second}); in processElement()
106 TraceValue sizeValue = sizeResult->second; in processElement()