Home
last modified time | relevance | path

Searched refs:LinearAllocator (Results 1 – 12 of 12) sorted by relevance

/frameworks/compile/mclinker/include/mcld/Support/
DUniqueGCFactory.h27 class UniqueGCFactoryBase : public GCFactoryBase<LinearAllocator<DataType, ChunkSize> >
30 typedef GCFactoryBase<LinearAllocator<DataType, ChunkSize> > Alloc;
35 : GCFactoryBase<LinearAllocator<DataType, ChunkSize> >() in UniqueGCFactoryBase()
39 : GCFactoryBase<LinearAllocator<DataType, ChunkSize> >(pNum) in UniqueGCFactoryBase()
DAllocators.h292 class LinearAllocator : public LinearAllocatorBase<Chunk<DataType, ChunkSize> >
297 typedef LinearAllocator<NewDataType, ChunkSize> other;
301 LinearAllocator() in LinearAllocator() function
305 virtual ~LinearAllocator() in ~LinearAllocator()
310 class LinearAllocator<DataType, 0> : public LinearAllocatorBase<Chunk<DataType, 0> >
315 typedef LinearAllocator<NewDataType, 0> other;
319 explicit LinearAllocator(size_t pNum) in LinearAllocator() function
324 virtual ~LinearAllocator() in ~LinearAllocator()
DGCFactory.h211 class GCFactory : public GCFactoryBase<LinearAllocator<DataType, ChunkSize> >
215 : GCFactoryBase<LinearAllocator<DataType, ChunkSize> >() in GCFactory()
220 class GCFactory<DataType, 0> : public GCFactoryBase<LinearAllocator<DataType, 0> >
224 : GCFactoryBase<LinearAllocator<DataType, 0> >(pNum) in GCFactory()
/frameworks/base/libs/hwui/
DDeferredDisplayList.h52 static void* operator new(size_t size, LinearAllocator& allocator) { in new()
179 LinearAllocator mAllocator;
DDisplayList.h92 LinearAllocator allocator;
DDisplayListRenderer.h199 LinearAllocator& alloc() { return mDisplayListData->allocator; } in alloc()
DDisplayList.cpp172 LinearAllocator& alloc = mDisplayListData->allocator; in initFromDisplayListRenderer()
DDisplayListOp.h65 static void* operator new(size_t size, LinearAllocator& allocator) { in new()
/frameworks/compile/mclinker/unittests/
DRTLinearAllocatorTest.h68 mcld::LinearAllocator<Data,0>* m_pTestee;
DLinearAllocatorTest.h67 typedef mcld::LinearAllocator<Data, CHUNK_SIZE> Alloc;
DLinearAllocatorTest.cpp20 m_pTestee = new LinearAllocator<Data, CHUNK_SIZE>(); in LinearAllocatorTest()
DRTLinearAllocatorTest.cpp20 m_pTestee = new LinearAllocator<Data, 0>(CHUNK_SIZE); in RTLinearAllocatorTest()