HomeSort by relevance Sort by last modified time
    Searched refs:fEntryCount (Results 1 - 4 of 4) sorted by null

  /external/skia/src/effects/
SkBitmapCache.cpp 37 fEntryCount = 0;
105 if (fEntryCount == fMaxEntries) {
108 fEntryCount -= 1;
113 fEntryCount += 1;
121 SkASSERT(fEntryCount >= 0 && fEntryCount <= fMaxEntries);
123 if (fEntryCount > 0) {
127 if (fEntryCount == 1) {
139 SkASSERT(count == fEntryCount);
SkBitmapCache.h 24 int fEntryCount;
  /external/skia/src/gpu/
GrResourceCache.cpp 40 fEntryCount = 0;
100 fEntryCount -= 1;
125 fEntryCount += 1;
199 entry, fEntryCount, resource->sizeInBytes(), fEntryBytes);
224 fEntryCount -= 1;
264 if (fEntryCount <= fMaxCount && fEntryBytes <= fMaxBytes) {
313 GrAssert(fEntryCount == fClientDetachedCount);
347 GrAssert(both_zero_or_nonzero(fEntryCount, fEntryBytes));
350 GrAssert(fClientDetachedCount <= fEntryCount);
351 GrAssert((fEntryCount - fClientDetachedCount) == fCache.count())
    [all...]
GrResourceCache.h 291 int fEntryCount;

Completed in 70 milliseconds