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

  /art/runtime/gc/space/
region_space.cc 224 size_t live_bytes = r->LiveBytes(); local
225 CHECK(live_bytes == 0U || live_bytes == static_cast<size_t>(-1)) << live_bytes;
415 << " alloc_time=" << alloc_time_ << " live_bytes=" << live_bytes_
region_space.h 377 void AddLiveBytes(size_t live_bytes) {
381 live_bytes_ += live_bytes;
  /external/v8/src/heap/
mark-compact.cc 729 int live_bytes = local
731 pages.push_back(std::make_pair(live_bytes, p));
789 int live_bytes = pages[i].first; local
790 int free_bytes = area_size - live_bytes;
793 ((total_live_bytes + live_bytes) <= max_evacuated_bytes))) {
795 total_live_bytes += live_bytes;
3250 base::SysInfo::NumberOfProcessors(), live_bytes, local
3304 intptr_t live_bytes = p->LiveBytes(); local
    [all...]
spaces.h 615 void SetLiveBytes(int live_bytes) {
616 DCHECK_GE(live_bytes, 0);
617 DCHECK_LE(static_cast<unsigned>(live_bytes), size_);
618 live_byte_count_ = live_bytes;
    [all...]

Completed in 55 milliseconds