OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PODArena
(Results
1 - 8
of
8
) sorted by null
/external/webkit/Source/WebKit/chromium/tests/
PODArenaTest.cpp
28
#include "
PODArena
.h"
68
RefPtr<
PODArena
> arena =
PODArena
::create(allocator);
69
int numIterations = 10 *
PODArena
::DefaultChunkSize / sizeof(TestClass1);
80
RefPtr<
PODArena
> arena =
PODArena
::create(allocator);
91
RefPtr<
PODArena
> arena =
PODArena
::create();
ArenaTestHelpers.h
29
#include "
PODArena
.h"
37
// An allocator for the
PODArena
which tracks the regions which have
39
class TrackedAllocator : public
PODArena
::FastMallocAllocator {
48
void* result =
PODArena
::FastMallocAllocator::allocate(size);
58
PODArena
::FastMallocAllocator::free(ptr);
PODRedBlackTreeTest.cpp
48
RefPtr<
PODArena
> arena =
PODArena
::create(allocator);
50
int numAdditions = 2 *
PODArena
::DefaultChunkSize / sizeof(int);
/external/webkit/Source/WebCore/platform/graphics/gpu/
LoopBlinnPathProcessor.h
51
class
PODArena
;
66
explicit LoopBlinnPathProcessor(PassRefPtr<
PODArena
>);
112
//
PODArena
from which to allocate temporary objects.
113
RefPtr<
PODArena
> m_arena;
PODArena.h
45
class
PODArena
: public RefCounted<
PODArena
> {
74
// Creates a new
PODArena
configured with a FastMallocAllocator.
75
static PassRefPtr<
PODArena
> create()
77
return adoptRef(new
PODArena
);
80
// Creates a new
PODArena
configured with the given Allocator.
81
static PassRefPtr<
PODArena
> create(PassRefPtr<Allocator> allocator)
83
return adoptRef(new
PODArena
(allocator));
115
~
PODArena
() { }
116
friend class WTF::RefCounted<
PODArena
>;
[
all
...]
PODIntervalTree.h
29
#include "
PODArena
.h"
60
explicit PODIntervalTree(PassRefPtr<
PODArena
> arena)
LoopBlinnPathProcessor.cpp
38
#include "
PODArena
.h"
139
// No-argument constructor allows construction by the
PODArena
class.
152
void setup(
PODArena
* arena,
170
void setup(
PODArena
* arena,
344
PODArena
* m_arena;
521
: m_arena(
PODArena
::create())
528
LoopBlinnPathProcessor::LoopBlinnPathProcessor(PassRefPtr<
PODArena
> arena)
[
all
...]
PODRedBlackTree.h
75
#include "
PODArena
.h"
105
// from a newly constructed
PODArena
.
107
: m_arena(
PODArena
::create())
117
// from the given
PODArena
.
118
explicit PODRedBlackTree(PassRefPtr<
PODArena
> arena)
749
RefPtr<
PODArena
> m_arena;
Completed in 862 milliseconds