HomeSort by relevance Sort by last modified time
    Searched defs:LinearAllocator (Results 1 - 3 of 3) sorted by null

  /frameworks/base/libs/hwui/utils/
LinearAllocator.cpp 28 #include "utils/LinearAllocator.h"
86 class LinearAllocator::Page {
104 LinearAllocator::LinearAllocator()
115 LinearAllocator::~LinearAllocator(void) {
131 void* LinearAllocator::start(Page* p) {
135 void* LinearAllocator::end(Page* p) {
139 bool LinearAllocator::fitsInCurrentPage(size_t size) {
143 void LinearAllocator::ensureNext(size_t size)
    [all...]
LinearAllocator.h 43 class LinearAllocator {
45 LinearAllocator();
46 ~LinearAllocator();
52 * The lifetime of the returned buffers is tied to that of the LinearAllocator. If calling
95 * Attempt to deallocate the given buffer, with the LinearAllocator attempting to rewind its
114 * The number of bytes used for buffers allocated in the LinearAllocator (does not count space
120 LinearAllocator(const LinearAllocator& other);
160 explicit LinearStdAllocator(LinearAllocator& allocator) : linearAllocator(allocator) {
    [all...]
  /frameworks/compile/mclinker/include/mcld/Support/
Allocators.h 20 * \brief Chunk is the basic unit of the storage of the LinearAllocator
22 * @see LinearAllocator
255 /** \class LinearAllocator
256 * \brief LinearAllocator is another bump pointer allocator which should be
264 * The underlying concept of LinearAllocator is a memory pool. LinearAllocator
272 class LinearAllocator
277 typedef LinearAllocator<NewDataType, ChunkSize> other;
281 LinearAllocator() : LinearAllocatorBase<Chunk<DataType, ChunkSize> >() {}
283 virtual ~LinearAllocator() {}
    [all...]

Completed in 147 milliseconds