OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:starting_size
(Results
1 - 6
of
6
) sorted by null
/art/runtime/gc/space/
dlmalloc_space.cc
41
size_t growth_limit, 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
uint8_t* 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
growth_limit, can_move_objects,
starting_size
);
94
size_t
starting_size
= kPageSize
local
[
all
...]
rosalloc_space.cc
48
size_t
starting_size
, bool low_memory_mode)
50
starting_size
, initial_size),
56
size_t
starting_size
, size_t initial_size,
63
allocator::RosAlloc* rosalloc = CreateRosAlloc(mem_map->Begin(),
starting_size
, initial_size,
71
uint8_t* end = mem_map->Begin() +
starting_size
;
72
if (capacity -
starting_size
> 0) {
73
CHECK_MEMORY_CALL(mprotect, (end, capacity -
starting_size
, PROT_NONE), name);
83
can_move_objects,
starting_size
, low_memory_mode);
86
growth_limit, can_move_objects,
starting_size
, low_memory_mode);
111
size_t
starting_size
= Heap::kDefaultStartingSize
local
[
all
...]
malloc_space.cc
40
bool create_bitmaps, bool can_move_objects, size_t
starting_size
,
45
starting_size_(
starting_size
), initial_size_(initial_size) {
68
MemMap* MallocSpace::CreateMemMap(const std::string& name, size_t
starting_size
, size_t* initial_size,
71
if (
starting_size
> *initial_size) {
72
*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
);
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
,
malloc_space.h
152
size_t
starting_size
, size_t initial_size);
154
static MemMap* CreateMemMap(const std::string& name, size_t
starting_size
, size_t* initial_size,
Completed in 247 milliseconds