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

  /external/v8/src/heap/
spaces-inl.h 238 Address current_top = allocation_info_.top();
240 if (new_top > allocation_info_.limit()) return NULL;
242 allocation_info_.set_top(new_top);
275 Address old_top = allocation_info_.top();
277 if (allocation_info_.limit() - old_top < size_in_bytes) {
282 allocation_info_.set_top(allocation_info_.top() + size_in_bytes);
283 DCHECK_SEMISPACE_ALLOCATION_INFO(allocation_info_, to_space_);
spaces.cc 896 allocation_info_.set_top(NULL);
897 allocation_info_.set_limit(NULL);
922 MemoryChunk::UpdateHighWaterMark(allocation_info_.top());
    [all...]
spaces.h 1897 AllocationInfo allocation_info_; member in class:v8::internal::PagedSpace
2567 AllocationInfo allocation_info_; member in class:v8::internal::NewSpace
    [all...]
  /art/runtime/gc/space/
large_object_space.cc 327 DCHECK_GE(info, allocation_info_);
329 return info - allocation_info_;
333 return &allocation_info_[GetSlotIndexForAddress(address)];
337 return &allocation_info_[GetSlotIndexForAddress(address)];
373 allocation_info_ = reinterpret_cast<AllocationInfo*>(allocation_info_map_->Begin());
381 AllocationInfo* cur_info = &allocation_info_[0];
large_object_space.h 205 AllocationInfo* allocation_info_; member in class:art::gc::space::FINAL

Completed in 295 milliseconds