HomeSort by relevance Sort by last modified time
    Searched defs:max_nof_chunks_ (Results 1 - 2 of 2) sorted by null

  /external/v8/src/
spaces.cc 284 int MemoryAllocator::max_nof_chunks_ = 0; member in class:v8::internal::MemoryAllocator
289 ASSERT(max_nof_chunks_ > 0);
290 ASSERT(top_ < max_nof_chunks_);
313 max_nof_chunks_ = (capacity_ / (kChunkSize - Page::kPageSize)) + 5;
314 if (max_nof_chunks_ > kMaxNofChunks) return false;
318 for (int i = max_nof_chunks_ - 1; i >= 0; i--) {
322 top_ = max_nof_chunks_;
328 for (int i = 0; i < max_nof_chunks_; i++) {
340 ASSERT(top_ == max_nof_chunks_); // all chunks are free
344 max_nof_chunks_ = 0
    [all...]
spaces.h 567 static int max_nof_chunks_; member in class:v8::internal::MemoryAllocator
    [all...]

Completed in 24 milliseconds