Lines Matching defs:start
80 allocation_size_ -= segment_head_->end() - segment_head_->start();
87 ASAN_UNPOISON_MEMORY_REGION(reinterpret_cast<void*>(keep->start()),
92 position_ = RoundUp(keep->start(), kAlignmentInBytes);
126 ASAN_UNPOISON_MEMORY_REGION(reinterpret_cast<void*>(segment->start()),
181 Address result = RoundUp(segment->start(), kAlignmentInBytes);
216 void* const start = reinterpret_cast<void*>(position_);
217 DCHECK_GE(start, reinterpret_cast<void*>(current->start()));
218 DCHECK_LE(start, reinterpret_cast<void*>(current->end()));
219 const size_t length = current->end() - reinterpret_cast<Address>(start);
220 ASAN_UNPOISON_MEMORY_REGION(start, length);