HomeSort by relevance Sort by last modified time
    Searched defs:live_bytes (Results 1 - 2 of 2) 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...]

Completed in 162 milliseconds