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 315 Address current_top = allocation_info_.top();
317 if (new_top > allocation_info_.limit()) return NULL;
319 allocation_info_.set_top(new_top);
326 Address current_top = allocation_info_.top();
330 if (new_top > allocation_info_.limit()) return AllocationResult::Retry();
332 allocation_info_.set_top(new_top);
344 Address current_top = allocation_info_.top();
348 if (new_top > allocation_info_.limit()) return NULL;
350 allocation_info_.set_top(new_top);
443 Address top = allocation_info_.top()
    [all...]
spaces.cc     [all...]
spaces.h 1937 AllocationInfo allocation_info_; member in class:v8::internal::LocalAllocationBuffer
2213 AllocationInfo allocation_info_; member in class:v8::internal::PagedSpace
2927 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 3435 milliseconds