Home
last modified time | relevance | path

Searched refs:initial_size_ (Results 1 – 4 of 4) sorted by relevance

/art/runtime/gc/space/
Dmalloc_space.cc45 starting_size_(starting_size), initial_size_(initial_size) { in MallocSpace()
195 void* allocator = CreateAllocator(End(), starting_size_, initial_size_, capacity, in CreateZygoteSpace()
199 if (capacity > initial_size_) { in CreateZygoteSpace()
200 CHECK_MEMORY_CALL(mprotect, (end, capacity - initial_size_, PROT_NONE), alloc_space_name); in CreateZygoteSpace()
Ddlmalloc_space.cc157 mem_map, initial_size_, name, allocator, begin, end, limit, growth_limit, in CreateInstance()
160 return new DlMallocSpace(mem_map, initial_size_, name, allocator, begin, end, limit, in CreateInstance()
282 mspace_ = CreateMspace(mem_map_->Begin(), starting_size_, initial_size_); in Clear()
Drosalloc_space.cc185 mem_map, initial_size_, name, reinterpret_cast<allocator::RosAlloc*>(allocator), begin, end, in CreateInstance()
188 return new RosAllocSpace(mem_map, initial_size_, name, in CreateInstance()
371 rosalloc_ = CreateRosAlloc(mem_map_->Begin(), starting_size_, initial_size_, in Clear()
Dmalloc_space.h196 const size_t initial_size_; variable