Home
last modified time | relevance | path

Searched refs:kMinHeapAllocCount (Results 1 – 2 of 2) sorted by relevance

/external/skia/include/private/
DSkTArray.h453 fAllocCount = SkTMax(count, SkTMax(kMinHeapAllocCount, reserveCount));
468 fAllocCount = SkTMax(count, kMinHeapAllocCount); in initWithPreallocatedStorage()
509 static constexpr int kMinHeapAllocCount = 8; variable
541 static_assert(SkIsPow2(kMinHeapAllocCount), "min alloc count not power of two."); in checkRealloc()
542 newAllocCount = (newAllocCount + (kMinHeapAllocCount - 1)) & ~(kMinHeapAllocCount - 1); in checkRealloc()
575 template<typename T, bool MEM_MOVE> constexpr int SkTArray<T, MEM_MOVE>::kMinHeapAllocCount;
/external/skqp/include/private/
DSkTArray.h453 fAllocCount = SkTMax(count, SkTMax(kMinHeapAllocCount, reserveCount));
468 fAllocCount = SkTMax(count, kMinHeapAllocCount); in initWithPreallocatedStorage()
509 static constexpr int kMinHeapAllocCount = 8; variable
541 static_assert(SkIsPow2(kMinHeapAllocCount), "min alloc count not power of two."); in checkRealloc()
542 newAllocCount = (newAllocCount + (kMinHeapAllocCount - 1)) & ~(kMinHeapAllocCount - 1); in checkRealloc()
575 template<typename T, bool MEM_MOVE> constexpr int SkTArray<T, MEM_MOVE>::kMinHeapAllocCount;