HomeSort by relevance Sort by last modified time
    Searched defs:fMaxBytes (Results 1 - 2 of 2) sorted by null

  /external/skia/src/core/
SkImageFilter.cpp 517 CacheImpl(size_t maxBytes) : fMaxBytes(maxBytes), fCurrentBytes(0) { }
582 while (fCurrentBytes > fMaxBytes) {
601 while (fCurrentBytes > fMaxBytes) {
643 size_t fMaxBytes;
  /external/skia/src/gpu/
GrResourceCache.h 107 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;

Completed in 3475 milliseconds