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

  /art/runtime/gc/space/
dlmalloc_space.cc 43 size_t growth_limit, bool can_move_objects, size_t starting_size)
45 starting_size, initial_size),
51 size_t starting_size, size_t initial_size,
55 void* mspace = CreateMspace(mem_map->Begin(), starting_size, initial_size);
62 uint8_t* end = mem_map->Begin() + starting_size;
63 if (capacity - starting_size > 0) {
64 CheckedCall(mprotect, name.c_str(), end, capacity - starting_size, PROT_NONE);
72 can_move_objects, starting_size);
75 growth_limit, can_move_objects, starting_size);
96 size_t starting_size = kPageSize local
    [all...]
rosalloc_space.cc 50 size_t starting_size, bool low_memory_mode)
52 starting_size, initial_size),
58 size_t starting_size, size_t initial_size,
65 allocator::RosAlloc* rosalloc = CreateRosAlloc(mem_map->Begin(), starting_size, initial_size,
73 uint8_t* end = mem_map->Begin() + starting_size;
74 if (capacity - starting_size > 0) {
75 CheckedCall(mprotect, name.c_str(), end, capacity - starting_size, PROT_NONE);
85 can_move_objects, starting_size, low_memory_mode);
88 growth_limit, can_move_objects, starting_size, low_memory_mode);
113 size_t starting_size = Heap::kDefaultStartingSize local
    [all...]
malloc_space.cc 45 bool create_bitmaps, bool can_move_objects, size_t starting_size,
50 starting_size_(starting_size), initial_size_(initial_size) {
73 MemMap* MallocSpace::CreateMemMap(const std::string& name, size_t starting_size, size_t* initial_size,
76 if (starting_size > *initial_size) {
77 *initial_size = starting_size;
dlmalloc_space.h 38 size_t starting_size, size_t initial_size,
144 bool can_move_objects, size_t starting_size);
malloc_space.h 142 size_t starting_size, size_t initial_size);
144 static MemMap* CreateMemMap(const std::string& name, size_t starting_size, size_t* initial_size,
rosalloc_space.h 45 size_t starting_size, size_t initial_size,
152 size_t growth_limit, bool can_move_objects, size_t starting_size,

Completed in 279 milliseconds