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.h 230 size_t live_bytes = r->LiveBytes(); variable
231 CHECK(live_bytes == 0U || live_bytes == static_cast<size_t>(-1)) << live_bytes;
410 void AddLiveBytes(size_t live_bytes) {
414 live_bytes_ += live_bytes;
  /external/v8/src/heap/
mark-compact.cc 714 size_t live_bytes = pages[i].first; local
715 DCHECK_GE(area_size, live_bytes);
716 size_t free_bytes = area_size - live_bytes;
719 ((total_live_bytes + live_bytes) <= max_evacuated_bytes))) {
721 total_live_bytes += live_bytes;
3150 intptr_t live_bytes = 0; local
    [all...]
mark-compact.h 692 int NumberOfParallelCompactionTasks(int pages, intptr_t live_bytes);
spaces.h 427 void SetLiveBytes(int live_bytes) {
428 DCHECK_GE(live_bytes, 0);
429 DCHECK_LE(static_cast<size_t>(live_bytes), size_);
430 live_byte_count_ = live_bytes;
    [all...]

Completed in 1343 milliseconds