Home
last modified time | relevance | path

Searched refs:minAllocSize (Results 1 – 3 of 3) sorted by relevance

/external/skia/src/gpu/
DGrMemoryPool.cpp16 GrMemoryPool::GrMemoryPool(size_t preallocSize, size_t minAllocSize) { in GrMemoryPool() argument
20 minAllocSize = SkTMax<size_t>(minAllocSize, 1 << 10); in GrMemoryPool()
21 fMinAllocSize = GrSizeAlignUp(minAllocSize + kPerAllocPad, kAlignment), in GrMemoryPool()
DGrMemoryPool.h27 GrMemoryPool(size_t preallocSize, size_t minAllocSize);
/external/skia/tests/
DGrMemoryPoolTest.cpp48 static void SetAllocator(size_t preallocSize, size_t minAllocSize) { in SetAllocator() argument
49 GrMemoryPool* pool = new GrMemoryPool(preallocSize, minAllocSize); in SetAllocator()