Searched defs:use_malloc (Results 1 - 2 of 2) sorted by relevance

/art/runtime/base/
H A Darena_allocator.cc271 ArenaPool::ArenaPool(bool use_malloc, bool low_4gb, const char* name) argument
272 : use_malloc_(use_malloc),
278 CHECK(!use_malloc) << "low4gb must use map implementation";
280 if (!use_malloc) {
/art/runtime/
H A Druntime.cc1149 const bool use_malloc = IsAotCompiler(); local
1150 arena_pool_.reset(new ArenaPool(use_malloc, /* low_4gb */ false));
1152 new ArenaPool(/* use_malloc */ false, /* low_4gb */ false, "CompilerMetadata"));
1156 low_4gb_arena_pool_.reset(new ArenaPool(/* use_malloc */ false, /* low_4gb */ true));

Completed in 36 milliseconds