Home
last modified time | relevance | path

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

/frameworks/native/opengl/libs/EGL/
DMultifileBlobCache.cpp75 mHotCacheLimit(0), in MultifileBlobCache()
108 mHotCacheLimit = mMaxKeySize + mMaxValueSize + sizeof(MultifileHeader); in MultifileBlobCache()
248 if ((mHotCacheSize + fileSize) < mHotCacheLimit) { in MultifileBlobCache()
658 if ((mHotCacheSize + newEntrySize) > mHotCacheLimit) { in addToHotCache()
662 mHotCacheSize, newEntrySize, mHotCacheLimit, newEntryHash); in addToHotCache()
681 if ((mHotCacheSize + newEntrySize) <= mHotCacheLimit / 2) { in addToHotCache()
DMultifileBlobCache.h164 size_t mHotCacheLimit; variable