Lines Matching defs:end
331 void SemiSpace::AddRangeToActiveSystemPages(Address start, Address end) {
335 DCHECK_LT(start, end);
336 DCHECK_LE(end, page->address() + Page::kPageSize);
339 start - page->address(), end - page->address(),
415 void SemiSpace::AssertValidRange(Address start, Address end) {
418 Page* end_page = Page::FromAllocationAreaAddress(end);
421 // Start address is before end address, either on same page,
422 // or end address is on a later page in the linked list of
425 DCHECK_LE(start, end);
442 void SemiSpaceObjectIterator::Initialize(Address start, Address end) {
443 SemiSpace::AssertValidRange(start, end);
445 limit_ = end;
611 it != parked_allocation_buffers_.end();) {
618 // We move a page with a parked allocaiton to the end of the pages list
710 // to be end of curent to space page.
720 // The allocation pointer should be in the space or at the very end.
775 // At end of page, switch to next page.