Home | History | Annotate | Download | only in platform

Lines Matching refs:free_start

349   // Releases the memory after |free_start|.
350 void ReleasePartial(void* free_start) {
354 size_t size = size_ - (reinterpret_cast<size_t>(free_start) -
356 CHECK(InVM(free_start, size));
357 DCHECK_LT(address_, free_start);
358 DCHECK_LT(free_start, reinterpret_cast<void*>(
360 bool result = ReleasePartialRegion(address_, size_, free_start, size);
400 // [free_start, free_start + free_size] is the memory that will be released.
401 static bool ReleasePartialRegion(void* base, size_t size, void* free_start,