Home
last modified time | relevance | path

Searched refs:moving_first_objs_count_ (Results 1 – 2 of 2) sorted by relevance

/art/runtime/gc/collector/
Dmark_compact.cc781 moving_first_objs_count_ = 0; in InitializePhase()
913 moving_first_objs_count_ = to_space_page_idx; in InitMovingSpaceFirstObjects()
1030 size_t min_size = (moving_first_objs_count_ + black_page_count_) * gPageSize; in CanCompactMovingSpaceWithMinorFault()
1110 CHECK_EQ(post_compact_end_, space_begin + moving_first_objs_count_ * gPageSize); in PrepareForCompaction()
1245 size_t reqd_size = std::min(moving_first_objs_count_ * gPageSize + 4 * MB, in PrepareForCompaction()
2288 (mode == kFallbackMode || idx > moving_first_objs_count_))); in FreeFromSpacePages()
2307 if (idx >= moving_first_objs_count_) { in FreeFromSpacePages()
2309 idx_addr = black_allocations_begin_ + (idx - moving_first_objs_count_) * gPageSize; in FreeFromSpacePages()
2313 size_t idx_len = moving_first_objs_count_ + black_page_count_; in FreeFromSpacePages()
2321 : (black_allocations_begin_ + (i - moving_first_objs_count_) * gPageSize); in FreeFromSpacePages()
[all …]
Dmark_compact.h795 size_t moving_first_objs_count_; variable