Searched defs:fMaxBytes (Results 1 - 2 of 2) sorted by relevance

/external/skia/src/core/
H A DSkImageFilter.cpp517 CacheImpl(size_t maxBytes) : fMaxBytes(maxBytes), fCurrentBytes(0) { }
582 while (fCurrentBytes > fMaxBytes) {
601 while (fCurrentBytes > fMaxBytes) {
643 size_t fMaxBytes; member in class:__anon16031::CacheImpl
/external/skia/src/gpu/
H A DGrResourceCache.h107 size_t getMaxResourceBytes() const { return fMaxBytes; }
261 bool overBudget() const { return fBudgetedBytes > fMaxBytes || fBudgetedCount > fMaxCount; }
264 return fBudgetedBytes+bytes <= fMaxBytes && fBudgetedCount+1 <= fMaxCount;
322 size_t fMaxBytes; member in class:GrResourceCache

Completed in 6067 milliseconds