OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:UNLIMITED_SIZE
(Results
1 - 2
of
2
) sorted by null
/external/skia/src/core/
SkBitmapHeap.h
81
static const int32_t
UNLIMITED_SIZE
= -1;
87
* case where we choose to allow the heap to grow indefinitely (i.e.
UNLIMITED_SIZE
) we
97
SkBitmapHeap(int32_t preferredSize =
UNLIMITED_SIZE
, int32_t ownerCount = IGNORE_OWNERS);
112
SkBitmapHeap(ExternalStorage* externalStorage, int32_t heapSize =
UNLIMITED_SIZE
);
SkBitmapHeap.cpp
153
SkASSERT(fPreferredCount !=
UNLIMITED_SIZE
);
178
if (
UNLIMITED_SIZE
== fPreferredCount) {
285
if (fPreferredCount !=
UNLIMITED_SIZE
) {
296
if (fPreferredCount !=
UNLIMITED_SIZE
&& fStorage.count() >= fPreferredCount) {
315
if (fPreferredCount !=
UNLIMITED_SIZE
&& fUnusedSlots.count() > 0) {
371
if (fPreferredCount !=
UNLIMITED_SIZE
) {
Completed in 106 milliseconds