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

/external/v8/src/heap/
H A Dspaces.h37 class MemoryChunk;
227 // MemoryChunk represents a memory region owned by a specific space.
231 class MemoryChunk { class in namespace:v8::internal
375 // Only works if the pointer is in the first kPageSize of the MemoryChunk.
376 static MemoryChunk* FromAddress(Address a) {
377 return reinterpret_cast<MemoryChunk*>(OffsetFrom(a) & ~kAlignmentMask);
380 static inline MemoryChunk* FromAnyPointerAddress(Heap* heap, Address addr);
387 MemoryChunk* chunk = MemoryChunk::FromAddress(mark - 1);
396 static bool IsValid(MemoryChunk* chun
[all...]

Completed in 201 milliseconds