Searched defs:live_bytes (Results 1 - 2 of 2) sorted by relevance

/external/v8/src/heap/
H A Dmark-compact.cc769 int live_bytes = pages[i].first; local
770 int free_bytes = area_size - live_bytes;
773 ((total_live_bytes + live_bytes) <= max_evacuated_bytes))) {
775 total_live_bytes += live_bytes;
3182 "live_bytes=%d time=%f\n",
3213 intptr_t live_bytes) {
3233 tasks = 1 + static_cast<int>(live_bytes / compaction_speed /
3293 intptr_t live_bytes = 0; local
3295 live_bytes += page->LiveBytes();
3301 live_bytes
3212 NumberOfParallelCompactionTasks(int pages, intptr_t live_bytes) argument
[all...]
H A Dspaces.h615 void SetLiveBytes(int live_bytes) { argument
617 DCHECK_GE(live_bytes, 0);
618 DCHECK_LE(static_cast<size_t>(live_bytes), size_);
619 live_byte_count_ = live_bytes;

Completed in 76 milliseconds