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 378 Address current_top = allocation_info_.top();
380 if (new_top > allocation_info_.limit()) return NULL;
382 allocation_info_.set_top(new_top);
389 Address current_top = allocation_info_.top();
393 if (new_top > allocation_info_.limit()) return AllocationResult::Retry();
395 allocation_info_.set_top(new_top);
407 Address current_top = allocation_info_.top();
411 if (new_top > allocation_info_.limit()) return NULL;
413 allocation_info_.set_top(new_top);
525 Address top = allocation_info_.top()
    [all...]
spaces.cc     [all...]
spaces.h 1906 AllocationInfo allocation_info_; member in class:v8::internal::LocalAllocationBuffer
2166 AllocationInfo allocation_info_; member in class:v8::internal::PagedSpace
2659 AllocationInfo allocation_info_; member in class:v8::internal::NewSpace
    [all...]
  /art/runtime/gc/space/
large_object_space.cc 325 DCHECK_GE(info, allocation_info_);
327 return info - allocation_info_;
331 return &allocation_info_[GetSlotIndexForAddress(address)];
335 return &allocation_info_[GetSlotIndexForAddress(address)];
371 allocation_info_ = reinterpret_cast<AllocationInfo*>(allocation_info_map_->Begin());
379 AllocationInfo* cur_info = &allocation_info_[0];
large_object_space.h 215 AllocationInfo* allocation_info_; member in class:art::gc::space::FINAL

Completed in 1026 milliseconds