Searched refs:UNLIMITED_SIZE (Results 1 - 2 of 2) sorted by relevance

/external/skia/src/core/
H A DSkBitmapHeap.h80 static const int32_t UNLIMITED_SIZE = -1; member in class:SkBitmapHeap
86 * case where we choose to allow the heap to grow indefinitely (i.e. UNLIMITED_SIZE) we
96 SkBitmapHeap(int32_t preferredSize = UNLIMITED_SIZE, int32_t ownerCount = IGNORE_OWNERS);
111 SkBitmapHeap(ExternalStorage* externalStorage, int32_t heapSize = UNLIMITED_SIZE);
H A DSkBitmapHeap.cpp156 SkASSERT(fPreferredCount != UNLIMITED_SIZE);
181 if (UNLIMITED_SIZE == fPreferredCount) {
288 if (fPreferredCount != UNLIMITED_SIZE) {
299 if (fPreferredCount != UNLIMITED_SIZE && fStorage.count() >= fPreferredCount) {
318 if (fPreferredCount != UNLIMITED_SIZE && fUnusedSlots.count() > 0) {
374 if (fPreferredCount != UNLIMITED_SIZE) {

Completed in 44 milliseconds