Home
last modified time | relevance | path

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

/frameworks/compile/mclinker/include/mcld/Support/
DUniqueGCFactory.h24 class UniqueGCFactoryBase : public GCFactoryBase<LinearAllocator<DataType, ChunkSize> >
27 typedef GCFactoryBase<LinearAllocator<DataType, ChunkSize> > Alloc;
32 : GCFactoryBase<LinearAllocator<DataType, ChunkSize> >() in UniqueGCFactoryBase()
36 : GCFactoryBase<LinearAllocator<DataType, ChunkSize> >(pNum) in UniqueGCFactoryBase()
DAllocators.h289 class LinearAllocator : public LinearAllocatorBase<Chunk<DataType, ChunkSize> >
294 typedef LinearAllocator<NewDataType, ChunkSize> other;
298 LinearAllocator() in LinearAllocator() function
302 virtual ~LinearAllocator() in ~LinearAllocator()
307 class LinearAllocator<DataType, 0> : public LinearAllocatorBase<Chunk<DataType, 0> >
312 typedef LinearAllocator<NewDataType, 0> other;
316 explicit LinearAllocator(size_t pNum) in LinearAllocator() function
321 virtual ~LinearAllocator() in ~LinearAllocator()
DGCFactory.h208 class GCFactory : public GCFactoryBase<LinearAllocator<DataType, ChunkSize> >
212 : GCFactoryBase<LinearAllocator<DataType, ChunkSize> >() in GCFactory()
217 class GCFactory<DataType, 0> : public GCFactoryBase<LinearAllocator<DataType, 0> >
221 : GCFactoryBase<LinearAllocator<DataType, 0> >(pNum) in GCFactory()
/frameworks/base/libs/hwui/
DDisplayList.h71 PlaybackStateStruct(OpenGLRenderer& renderer, int replayFlags, LinearAllocator* allocator) in PlaybackStateStruct()
83 LinearAllocator * const mAllocator;
107 LinearAllocator mReplayAllocator;
175 LinearAllocator allocator;
DStatefulBaseRenderer.h98 void setClippingOutline(LinearAllocator& allocator, const Outline* outline);
99 void setClippingRoundRect(LinearAllocator& allocator,
DSnapshot.h47 static void* operator new(size_t size, LinearAllocator& allocator) { in new()
173 void setClippingRoundRect(LinearAllocator& allocator, const Rect& bounds,
DDeferredDisplayList.h51 static void* operator new(size_t size, LinearAllocator& allocator) { in new()
181 LinearAllocator mAllocator;
DDamageAccumulator.h64 LinearAllocator mAllocator;
DStatefulBaseRenderer.cpp197 void StatefulBaseRenderer::setClippingOutline(LinearAllocator& allocator, const Outline* outline) { in setClippingOutline()
212 void StatefulBaseRenderer::setClippingRoundRect(LinearAllocator& allocator, in setClippingRoundRect()
DRenderNode.cpp591 inline LinearAllocator& allocator() { return *(mDeferStruct.mAllocator); } in allocator()
618 inline LinearAllocator& allocator() { return *(mReplayStruct.mAllocator); } in allocator()
799 LinearAllocator& alloc = handler.allocator(); in issueOperationsOfProjectedChildren()
895 LinearAllocator& alloc = handler.allocator(); in issueOperations()
DSnapshot.cpp219 void Snapshot::setClippingRoundRect(LinearAllocator& allocator, const Rect& bounds, in setClippingRoundRect()
DDisplayListRenderer.h175 LinearAllocator& alloc() { return mDisplayListData->allocator; } in alloc()
DDisplayListOp.h69 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()