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

  /external/v8/src/
heap.h 255 static Address NewSpaceStart() { return new_space_.start(); }
256 static uintptr_t NewSpaceMask() { return new_space_.mask(); }
257 static Address NewSpaceTop() { return new_space_.top(); }
259 static NewSpace* new_space() { return &new_space_; }
276 return new_space_.allocation_top_address();
279 return new_space_.allocation_limit_address();
283 static bool UncommitFromSpace() { return new_space_.UncommitFromSpace(); }
924 static NewSpace new_space_; member in class:v8::internal::Heap
    [all...]
heap.cc 57 NewSpace Heap::new_space_; member in class:v8::internal::Heap
131 return new_space_.Capacity() +
143 return new_space_.CommittedMemory() +
156 return new_space_.Available() +
203 if (MemoryAllocator::MaxAvailable() <= new_space_.Size()) {
221 if (FLAG_heap_stats || FLAG_log_gc) new_space_.CollectStatistics();
225 new_space_.ReportStatistics();
227 if (FLAG_heap_stats || FLAG_log_gc) new_space_.ClearHistograms();
230 new_space_.CollectStatistics();
232 new_space_.ClearHistograms()
    [all...]

Completed in 40 milliseconds