Home | History | Annotate | Download | only in src

Lines Matching refs:chunk_size

493   size_t chunk_size;
500 chunk_size = RoundUp(CodePageAreaStartOffset() + body_size,
504 if (size_executable_ + chunk_size > capacity_executable_) {
514 base = isolate_->code_range()->AllocateRawMemory(chunk_size, &chunk_size);
518 size_ += chunk_size;
520 size_executable_ += chunk_size;
522 base = AllocateAlignedMemory(chunk_size,
538 chunk_size = MemoryChunk::kObjectStartOffset + body_size;
539 base = AllocateAlignedMemory(chunk_size,
547 ZapBlock(base, chunk_size);
551 area_end = base + chunk_size;
555 Increment(static_cast<int>(chunk_size));
557 LOG(isolate_, NewEvent("MemoryChunk", base, chunk_size));
560 PerformAllocationCallback(space, kAllocationActionAllocate, chunk_size);
565 chunk_size,