Lines Matching defs:chunk
14 #include "src/heap/basic-memory-chunk.h"
19 #include "src/heap/memory-chunk-layout.h"
70 static MemoryChunk* cast(BasicMemoryChunk* chunk) {
71 SLOW_DCHECK(!chunk->InReadOnlySpace());
72 return static_cast<MemoryChunk*>(chunk);
75 static const MemoryChunk* cast(const BasicMemoryChunk* chunk) {
76 SLOW_DCHECK(!chunk->InReadOnlySpace());
77 return static_cast<const MemoryChunk*>(chunk);
160 // Approximate amount of physical memory committed for this chunk.
182 // Gets the chunk's allocation space, potentially dealing with a null owner_
210 // Release memory allocated by the chunk, except that which is needed by
219 // Release all memory allocated by the chunk. Should be called when memory
220 // chunk is about to be freed.
233 static void ValidateOffsets(MemoryChunk* chunk);
274 // Tracks off-heap memory used by this memory chunk.