Searched defs:MemoryChunk (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/gpu/command_buffer/client/
H A Dmapped_memory.cc16 MemoryChunk::MemoryChunk(int32 shm_id, function in class:gpu::MemoryChunk
24 MemoryChunk::~MemoryChunk() {}
40 MemoryChunk* chunk = *iter;
53 MemoryChunk* chunk = chunks_[ii];
72 MemoryChunk* chunk = chunks_[ii];
95 MemoryChunk* mc = new MemoryChunk(id, shm, helper_, poll_callback_);
107 MemoryChunk* chun
[all...]
H A Dmapped_memory.h22 class GPU_EXPORT MemoryChunk { class in namespace:gpu
24 MemoryChunk(int32_t shm_id,
28 ~MemoryChunk();
115 DISALLOW_COPY_AND_ASSIGN(MemoryChunk);
176 MemoryChunk* chunk = chunks_[ii];
188 typedef ScopedVector<MemoryChunk> MemoryChunkVector;
/external/chromium_org/v8/src/heap/
H A Dspaces.h99 class MemoryChunk;
196 static inline void Clear(MemoryChunk* chunk);
269 // MemoryChunk represents a memory region owned by a specific space.
273 class MemoryChunk { class in namespace:v8::internal
275 // Only works if the pointer is in the first kPageSize of the MemoryChunk.
276 static MemoryChunk* FromAddress(Address a) {
277 return reinterpret_cast<MemoryChunk*>(OffsetFrom(a) & ~kAlignmentMask);
279 static const MemoryChunk* FromAddress(const byte* a) {
280 return reinterpret_cast<const MemoryChunk*>(OffsetFrom(a) &
285 static inline MemoryChunk* FromAnyPointerAddres
[all...]

Completed in 158 milliseconds