Lines Matching refs:mspace
38 void* mspace, uint8_t* begin, uint8_t* end, uint8_t* limit, in DlMallocSpace() argument
42 mspace_(mspace) { in DlMallocSpace()
43 CHECK(mspace != nullptr); in DlMallocSpace()
51 void* mspace = CreateMspace(mem_map->Begin(), starting_size, initial_size); in CreateFromMemMap() local
52 if (mspace == nullptr) { in CreateFromMemMap()
67 mem_map, initial_size, name, mspace, begin, end, begin + capacity, growth_limit, in CreateFromMemMap()
70 return new DlMallocSpace(mem_map, initial_size, name, mspace, begin, end, begin + capacity, in CreateFromMemMap()
322 void* ArtDlMallocMoreCore(void* mspace, intptr_t increment) { in ArtDlMallocMoreCore() argument
326 if (UNLIKELY(dlmalloc_space == nullptr || dlmalloc_space->GetMspace() != mspace)) { in ArtDlMallocMoreCore()
331 if (cur_dlmalloc_space->GetMspace() == mspace) { in ArtDlMallocMoreCore()
337 CHECK(dlmalloc_space != nullptr) << "Couldn't find DlmMallocSpace with mspace=" << mspace; in ArtDlMallocMoreCore()