OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MemoryChunk
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/gpu/command_buffer/client/
mapped_memory.cc
16
MemoryChunk
::
MemoryChunk
(
35
MemoryChunk
* chunk = *iter;
48
MemoryChunk
* chunk = chunks_[ii];
67
MemoryChunk
* chunk = chunks_[ii];
88
MemoryChunk
* mc = new
MemoryChunk
(id, shm, helper_);
100
MemoryChunk
* chunk = chunks_[ii];
111
MemoryChunk
* chunk = chunks_[ii];
124
MemoryChunk
* chunk = *iter
[
all
...]
mapped_memory.h
19
class GPU_EXPORT
MemoryChunk
{
21
MemoryChunk
(int32 shm_id, gpu::Buffer shm, CommandBufferHelper* helper);
107
DISALLOW_COPY_AND_ASSIGN(
MemoryChunk
);
170
typedef ScopedVector<
MemoryChunk
> MemoryChunkVector;
/external/v8/src/
spaces.h
122
class
MemoryChunk
;
224
static inline void Clear(
MemoryChunk
* chunk);
297
//
MemoryChunk
represents a memory region owned by a specific space.
301
class
MemoryChunk
{
303
// Only works if the pointer is in the first kPageSize of the
MemoryChunk
.
304
static
MemoryChunk
* FromAddress(Address a) {
305
return reinterpret_cast<
MemoryChunk
*>(OffsetFrom(a) & ~kAlignmentMask);
309
static inline
MemoryChunk
* FromAnyPointerAddress(Address addr);
315
MemoryChunk
* next_chunk() const { return next_chunk_; }
316
MemoryChunk
* prev_chunk() const { return prev_chunk_;
[
all
...]
/external/chromium_org/v8/src/
spaces.h
121
class
MemoryChunk
;
223
static inline void Clear(
MemoryChunk
* chunk);
298
//
MemoryChunk
represents a memory region owned by a specific space.
302
class
MemoryChunk
{
304
// Only works if the pointer is in the first kPageSize of the
MemoryChunk
.
305
static
MemoryChunk
* FromAddress(Address a) {
306
return reinterpret_cast<
MemoryChunk
*>(OffsetFrom(a) & ~kAlignmentMask);
310
static inline
MemoryChunk
* FromAnyPointerAddress(Heap* heap, Address addr);
316
MemoryChunk
* next_chunk() const { return next_chunk_; }
317
MemoryChunk
* prev_chunk() const { return prev_chunk_;
[
all
...]
Completed in 75 milliseconds