OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MemoryPool
(Results
1 - 4
of
4
) sorted by null
/external/google-fruit/include/fruit/impl/data_structures/
memory_pool.defn.h
29
inline
MemoryPool
::
MemoryPool
() : first_free(nullptr), capacity(0) {}
31
inline
MemoryPool
::
MemoryPool
(
MemoryPool
&& other)
37
inline
MemoryPool
&
MemoryPool
::operator=(
MemoryPool
&& other) {
50
inline
MemoryPool
::~
MemoryPool
() {
[
all
...]
memory_pool.h
27
* See also ArenaAllocator, an Allocator backed by a
MemoryPool
object.
29
class
MemoryPool
{
44
MemoryPool
();
46
MemoryPool
(const
MemoryPool
&) = delete;
47
MemoryPool
(
MemoryPool
&&);
48
MemoryPool
& operator=(const
MemoryPool
&) = delete;
49
MemoryPool
& operator=(MemoryPool&&)
[
all
...]
/external/webrtc/webrtc/modules/audio_conference_mixer/source/
memory_pool.h
27
class
MemoryPool
31
static int32_t CreateMemoryPool(
MemoryPool
*&
memoryPool
,
37
MemoryPool
*&
memoryPool
);
43
MemoryPool
(int32_t initialPoolSize);
44
~
MemoryPool
();
50
MemoryPool
<MemoryType>::
MemoryPool
(int32_t initialPoolSize)
56
MemoryPool
<MemoryType>::~MemoryPool(
[
all
...]
/external/ImageMagick/MagickCore/
memory.c
166
}
MemoryPool
;
205
static
MemoryPool
[
all
...]
Completed in 2461 milliseconds