Home | History | Annotate | Download | only in collector

Lines Matching refs:Begin

45     uintptr_t space_begin = reinterpret_cast<uintptr_t>(space->Begin());
57 intervals.push_back(Interval(reinterpret_cast<uintptr_t>(image_oat_file->Begin()),
64 std::sort(intervals.begin(), intervals.end());
65 // Intervals are already sorted by begin, if a new interval begins at the end of the current
71 const uintptr_t begin = std::get<0>(interval);
74 VLOG(collector) << "Interval " << reinterpret_cast<const void*>(begin) << "-"
76 DCHECK_GE(end, begin);
77 DCHECK_GE(begin, cur_end);
80 if (begin != cur_end) {
85 cur_begin = begin;
92 cur_heap_size += end - begin;
102 VLOG(collector) << "Immune region " << largest_immune_region_.Begin() << "-"
119 return a->Begin() < b->Begin();