Home
last modified time | relevance | path

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

/frameworks/native/libs/renderengine/skia/debug/
DSkiaMemoryReporter.cpp63 auto sizeResult = mCurrentValues.find("size"); in processCurrentElement() local
64 if (sizeResult != mCurrentValues.end() && sizeResult->second.value > 0) { in processCurrentElement()
66 mTotalSize.value += sizeResult->second.value; in processCurrentElement()
93 auto totalResult = resourceValues.find(sizeResult->first); in processCurrentElement()
95 ALOGE_IF(sizeResult->second.units != totalResult->second.units, in processCurrentElement()
98 totalResult->second.value += sizeResult->second.value; in processCurrentElement()
105 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 std::string key = (mItemizeType) ? type : sizeResult->first; in processElement()
98 SkASSERT(sizeResult->second.units == typeResult->second.units); in processElement()
99 typeResult->second.value += sizeResult->second.value; in processElement()
102 resourceValues.insert({key, sizeResult->second}); in processElement()
105 TraceValue sizeValue = sizeResult->second; in processElement()