Home
last modified time | relevance | path

Searched refs:CFX_GrowOnlyPool (Results 1 – 4 of 4) sorted by relevance

/external/pdfium/core/src/fxcrt/
Dfx_basic_memmgr.cpp234 return ((CFX_GrowOnlyPool*)pAllocator)->Alloc(size); in _GOPAllocDebug()
238 return ((CFX_GrowOnlyPool*)pAllocator)->Alloc(size); in _GOPAlloc()
242 return ((CFX_GrowOnlyPool*)pAllocator)->Realloc(p, new_size); in _GOPReallocDebug()
246 return ((CFX_GrowOnlyPool*)pAllocator)->Realloc(p, new_size); in _GOPRealloc()
252 CFX_GrowOnlyPool::CFX_GrowOnlyPool(IFX_Allocator* pAllocator, size_t trunk_size) in CFX_GrowOnlyPool() function in CFX_GrowOnlyPool
263 CFX_GrowOnlyPool::~CFX_GrowOnlyPool() in ~CFX_GrowOnlyPool()
267 void CFX_GrowOnlyPool::SetAllocator(IFX_Allocator* pAllocator) in SetAllocator()
277 void CFX_GrowOnlyPool::FreeAll() in FreeAll()
287 void* CFX_GrowOnlyPool::Alloc(size_t size) in Alloc()
/external/pdfium/core/include/fxcrt/
Dfx_memory.h225 class CFX_GrowOnlyPool : public IFX_Allocator, public CFX_Object
229 CFX_GrowOnlyPool(IFX_Allocator* pAllocator = NULL, size_t trunk_size = 16384);
231 ~CFX_GrowOnlyPool();
/external/pdfium/core/src/reflow/
Dreflowedpage.h165 CPDF_ReflowedPage(CFX_GrowOnlyPool* pMemoryPool);
185 CFX_GrowOnlyPool* m_pMemoryPool;
Dreflowedpage.cpp30 CPDF_ReflowedPage::CPDF_ReflowedPage(CFX_GrowOnlyPool* pMemoryPool) in CPDF_ReflowedPage()
39 m_pMemoryPool = FX_NEW CFX_GrowOnlyPool; in CPDF_ReflowedPage()