OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:LinearAllocator
(Results
1 - 3
of
3
) sorted by null
/system/core/include/utils/
LinearAllocator.h
39
class
LinearAllocator
{
41
LinearAllocator
();
42
~
LinearAllocator
();
48
* The lifetime of the returned buffers is tied to that of the
LinearAllocator
. If calling
55
* Attempt to deallocate the given buffer, with the
LinearAllocator
attempting to rewind its
66
* The number of bytes used for buffers allocated in the
LinearAllocator
(does not count space
72
LinearAllocator
(const
LinearAllocator
& other);
/frameworks/compile/mclinker/include/mcld/Support/
Allocators.h
23
* \brief Chunk is the basic unit of the storage of the
LinearAllocator
25
* @see
LinearAllocator
275
/** \class
LinearAllocator
276
* \brief
LinearAllocator
is another bump pointer allocator which should be
284
* The underlying concept of
LinearAllocator
is a memory pool.
LinearAllocator
292
class
LinearAllocator
: public LinearAllocatorBase<Chunk<DataType, ChunkSize> >
297
typedef
LinearAllocator
<NewDataType, ChunkSize> other;
301
LinearAllocator
()
305
virtual ~
LinearAllocator
()
[
all
...]
/system/core/libutils/
LinearAllocator.cpp
26
#define LOG_TAG "
LinearAllocator
"
30
#include <utils/
LinearAllocator
.h>
86
class
LinearAllocator
::Page {
110
LinearAllocator
::
LinearAllocator
()
121
LinearAllocator
::~
LinearAllocator
(void) {
132
void*
LinearAllocator
::start(Page* p) {
136
void*
LinearAllocator
::end(Page* p) {
140
bool
LinearAllocator
::fitsInCurrentPage(size_t size)
[
all
...]
Completed in 187 milliseconds