Searched refs:firstHeapAllocation (Results 1 – 4 of 4) sorted by relevance
/external/skqp/src/core/ |
D | SkArenaAlloc.cpp | 14 static uint32_t first_allocated_block(uint32_t blockSize, uint32_t firstHeapAllocation) { in first_allocated_block() argument 15 return firstHeapAllocation > 0 ? firstHeapAllocation : in first_allocated_block() 19 SkArenaAlloc::SkArenaAlloc(char* block, size_t size, size_t firstHeapAllocation) in SkArenaAlloc() argument 25 , fFirstHeapAllocationSize {first_allocated_block(ToU32(size), ToU32(firstHeapAllocation))}
|
/external/skia/src/core/ |
D | SkArenaAlloc.cpp | 14 static uint32_t first_allocated_block(uint32_t blockSize, uint32_t firstHeapAllocation) { in first_allocated_block() argument 15 return firstHeapAllocation > 0 ? firstHeapAllocation : in first_allocated_block() 19 SkArenaAlloc::SkArenaAlloc(char* block, size_t size, size_t firstHeapAllocation) in SkArenaAlloc() argument 25 , fFirstHeapAllocationSize {first_allocated_block(ToU32(size), ToU32(firstHeapAllocation))}
|
/external/skqp/include/private/ |
D | SkArenaAlloc.h | 66 SkArenaAlloc(char* block, size_t blockSize, size_t firstHeapAllocation); 68 explicit SkArenaAlloc(size_t firstHeapAllocation) in SkArenaAlloc() argument 69 : SkArenaAlloc(nullptr, 0, firstHeapAllocation) in SkArenaAlloc() 231 explicit SkSTArenaAlloc(size_t firstHeapAllocation = InlineStorageSize) 232 : INHERITED(fInlineStorage, InlineStorageSize, firstHeapAllocation) {} in INHERITED() argument
|
/external/skia/include/private/ |
D | SkArenaAlloc.h | 66 SkArenaAlloc(char* block, size_t blockSize, size_t firstHeapAllocation); 68 explicit SkArenaAlloc(size_t firstHeapAllocation) in SkArenaAlloc() argument 69 : SkArenaAlloc(nullptr, 0, firstHeapAllocation) in SkArenaAlloc() 231 explicit SkSTArenaAlloc(size_t firstHeapAllocation = InlineStorageSize) 232 : INHERITED(fInlineStorage, InlineStorageSize, firstHeapAllocation) {} in INHERITED() argument
|