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

  /external/v8/src/heap/
spaces-inl.h 406 Address current_top = allocation_info_.top();
408 if (new_top > allocation_info_.limit()) return NULL;
410 allocation_info_.set_top(new_top);
417 Address current_top = allocation_info_.top();
421 if (new_top > allocation_info_.limit()) return AllocationResult::Retry();
423 allocation_info_.set_top(new_top);
435 Address current_top = allocation_info_.top();
439 if (new_top > allocation_info_.limit()) return NULL;
441 allocation_info_.set_top(new_top);
541 Address top = allocation_info_.top()
    [all...]
spaces.cc     [all...]
spaces.h 2107 AllocationInfo allocation_info_; member in class:v8::internal::LocalAllocationBuffer
2383 AllocationInfo allocation_info_; member in class:v8::internal::PagedSpace
2913 AllocationInfo allocation_info_; member in class:v8::internal::NewSpace
    [all...]
  /art/runtime/gc/space/
large_object_space.cc 332 DCHECK_GE(info, allocation_info_);
334 return info - allocation_info_;
338 return &allocation_info_[GetSlotIndexForAddress(address)];
342 return &allocation_info_[GetSlotIndexForAddress(address)];
378 allocation_info_ = reinterpret_cast<AllocationInfo*>(allocation_info_map_->Begin());
386 AllocationInfo* cur_info = &allocation_info_[0];
large_object_space.h 207 AllocationInfo* allocation_info_; member in class:art::gc::space::FINAL

Completed in 1205 milliseconds