HomeSort by relevance Sort by last modified time
    Searched refs:new_space_ (Results 1 - 6 of 6) sorted by null

  /external/v8/src/
heap-inl.h 202 result = new_space_.AllocateRaw(size_in_bytes);
293 bool result = new_space_.Contains(object);
302 return new_space_.Contains(addr);
307 return new_space_.FromSpaceContains(object);
312 return new_space_.ToSpaceContains(object);
327 Address age_mark = new_space_.age_mark();
330 return below_mark || (new_space_.Size() + object_size) >=
331 (new_space_.EffectiveCapacity() >> 2);
heap.cc 102 new_space_(this),
186 return new_space_.Capacity() +
198 return new_space_.CommittedMemory() +
217 return new_space_.Available() +
277 if (isolate_->memory_allocator()->MaxAvailable() <= new_space_.Size()) {
297 if (FLAG_heap_stats || FLAG_log_gc) new_space_.CollectStatistics();
301 new_space_.ReportStatistics();
303 if (FLAG_heap_stats || FLAG_log_gc) new_space_.ClearHistograms();
306 new_space_.CollectStatistics();
307 new_space_.ReportStatistics()
    [all...]
heap.h 494 Address NewSpaceStart() { return new_space_.start(); }
495 uintptr_t NewSpaceMask() { return new_space_.mask(); }
496 Address NewSpaceTop() { return new_space_.top(); }
498 NewSpace* new_space() { return &new_space_; }
515 return new_space_.allocation_top_address();
518 return new_space_.allocation_limit_address();
522 bool UncommitFromSpace() { return new_space_.UncommitFromSpace(); }
1638 NewSpace new_space_; member in class:v8::internal::Heap
    [all...]
  /external/chromium_org/v8/src/
heap.cc 103 new_space_(this),
199 return new_space_.Capacity() +
212 return new_space_.CommittedMemory() +
226 return new_space_.CommittedPhysicalMemory() +
247 return new_space_.Available() +
314 if (isolate_->memory_allocator()->MaxAvailable() <= new_space_.Size()) {
334 if (FLAG_heap_stats || FLAG_log_gc) new_space_.CollectStatistics();
338 new_space_.ReportStatistics();
340 if (FLAG_heap_stats || FLAG_log_gc) new_space_.ClearHistograms();
343 new_space_.CollectStatistics()
    [all...]
heap-inl.h 230 result = new_space_.AllocateRaw(size_in_bytes);
329 bool result = new_space_.Contains(object);
338 return new_space_.Contains(address);
343 return new_space_.FromSpaceContains(object);
348 return new_space_.ToSpaceContains(object);
383 Address age_mark = new_space_.age_mark();
386 return below_mark || (new_space_.Size() + object_size) >=
387 (new_space_.EffectiveCapacity() >> 2);
heap.h 552 Address NewSpaceStart() { return new_space_.start(); }
553 uintptr_t NewSpaceMask() { return new_space_.mask(); }
554 Address NewSpaceTop() { return new_space_.top(); }
556 NewSpace* new_space() { return &new_space_; }
596 return new_space_.allocation_top_address();
599 return new_space_.allocation_limit_address();
617 bool UncommitFromSpace() { return new_space_.UncommitFromSpace(); }
    [all...]

Completed in 49 milliseconds