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

  /external/v8/src/
spaces-inl.h 253 Address current_top = allocation_info_.top;
255 if (new_top > allocation_info_.limit) return NULL;
257 allocation_info_.top = new_top;
297 Address old_top = allocation_info_.top;
298 if (allocation_info_.limit - old_top < size_in_bytes) {
302 Object* obj = HeapObject::FromAddress(allocation_info_.top);
303 allocation_info_.top += size_in_bytes;
304 ASSERT_SEMISPACE_ALLOCATION_INFO(allocation_info_, to_space_);
326 allocation_info_.top);
327 Address old_top = allocation_info_.top
    [all...]
spaces.cc 795 allocation_info_.top = NULL;
796 allocation_info_.limit = NULL;
901 if (Page::FromAllocationTop(allocation_info_.top) == page) {
902 allocation_info_.top = allocation_info_.limit = NULL;
959 (allocation_info_.top == allocation_info_.limit);
964 if (page == Page::FromAllocationTop(allocation_info_.top)) {
    [all...]
spaces.h 1640 AllocationInfo allocation_info_; member in class:v8::internal::PagedSpace
2291 AllocationInfo allocation_info_; member in class:v8::internal::NewSpace
    [all...]

Completed in 124 milliseconds