Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/platform/graphics/
DImageDecodingStore.cpp42 , m_heapMemoryUsageInBytes(0) in ImageDecodingStore()
172 return m_heapMemoryUsageInBytes; in memoryUsageInBytes()
201 … const bool isPruneNeeded = m_heapMemoryUsageInBytes > m_heapLimitInBytes || !m_heapLimitInBytes; in prune()
220 m_heapMemoryUsageInBytes += cacheEntryBytes; in insertCacheInternal()
231 …FAULT("blink.image_decoding"), "ImageDecodingStoreHeapMemoryUsageBytes", m_heapMemoryUsageInBytes); in insertCacheInternal()
239 ASSERT(m_heapMemoryUsageInBytes >= cacheEntryBytes); in removeFromCacheInternal()
240 m_heapMemoryUsageInBytes -= cacheEntryBytes; in removeFromCacheInternal()
252 …FAULT("blink.image_decoding"), "ImageDecodingStoreHeapMemoryUsageBytes", m_heapMemoryUsageInBytes); in removeFromCacheInternal()
DImageDecodingStore.h205 size_t m_heapMemoryUsageInBytes; variable