HomeSort by relevance Sort by last modified time
    Searched defs:starting_size (Results 1 - 2 of 2) sorted by null

  /art/runtime/gc/space/
dlmalloc_space.cc 40 bool can_move_objects, size_t starting_size,
43 starting_size, initial_size),
49 size_t starting_size, size_t initial_size,
53 void* mspace = CreateMspace(mem_map->Begin(), starting_size, initial_size);
60 byte* end = mem_map->Begin() + starting_size;
61 if (capacity - starting_size > 0) {
62 CHECK_MEMORY_CALL(mprotect, (end, capacity - starting_size, PROT_NONE), name);
70 can_move_objects, starting_size);
73 can_move_objects, starting_size, initial_size);
94 size_t starting_size = kPageSize local
    [all...]
rosalloc_space.cc 47 size_t starting_size, size_t initial_size, bool low_memory_mode)
49 starting_size, initial_size),
55 size_t starting_size, size_t initial_size,
59 allocator::RosAlloc* rosalloc = CreateRosAlloc(mem_map->Begin(), starting_size, initial_size,
67 byte* end = mem_map->Begin() + starting_size;
68 if (capacity - starting_size > 0) {
69 CHECK_MEMORY_CALL(mprotect, (end, capacity - starting_size, PROT_NONE), name);
80 can_move_objects, starting_size, initial_size, low_memory_mode);
105 size_t starting_size = Heap::kDefaultStartingSize; local
106 MemMap* mem_map = CreateMemMap(name, starting_size, &initial_size, &growth_limit, &capacity
    [all...]

Completed in 45 milliseconds