OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TempMapping
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/courgette/
memory_allocator.cc
110
//
TempMapping
112
TempMapping
::
TempMapping
() {
115
TempMapping
::~
TempMapping
() {
118
bool
TempMapping
::Initialize(size_t size) {
130
TempMapping
** write = reinterpret_cast<
TempMapping
**>(mapping_.view());
136
void*
TempMapping
::memory() const {
146
bool
TempMapping
::valid() const
[
all
...]
memory_allocator.h
109
// The memory that this class manages holds a pointer back to the
TempMapping
111
// you can get a pointer to the
TempMapping
instance that owns that memory.
112
class
TempMapping
{
114
TempMapping
();
115
~
TempMapping
();
127
// Returns a pointer to the
TempMapping
instance that allocated the |mem|
129
// the memory block was allocated by the
TempMapping
class.
130
static
TempMapping
* GetMappingFromPtr(void* mem);
200
TempMapping
* mapping =
TempMapping
::GetMappingFromPtr(mem)
[
all
...]
Completed in 290 milliseconds