Lines Matching defs:other
138 // safe because there exists no other competing action on the page links
160 void PagedSpace::MergeCompactionSpace(CompactionSpace* other) {
163 DCHECK(identity() == other->identity());
167 other->FreeLinearAllocationArea();
171 allocations_origins_[i] += other->allocations_origins_[i];
174 // The linear allocation area of {other} should be destroyed now.
175 DCHECK_EQ(kNullAddress, other->top());
176 DCHECK_EQ(kNullAddress, other->limit());
179 for (auto it = other->begin(); it != other->end();) {
187 other->RemovePage(p);
200 for (auto p : other->GetNewPages()) {
204 DCHECK_EQ(0u, other->Size());
205 DCHECK_EQ(0u, other->Capacity());