Home
last modified time | relevance | path

Searched refs:total (Results 1 – 5 of 5) sorted by relevance

/art/runtime/gc/space/
Dbump_pointer_space.cc210 uint64_t total = static_cast<uint64_t>(bytes_allocated_.LoadRelaxed()); in GetBytesAllocated() local
220 total += thread->GetThreadLocalBytesAllocated(); in GetBytesAllocated()
223 return total; in GetBytesAllocated()
228 uint64_t total = static_cast<uint64_t>(objects_allocated_.LoadRelaxed()); in GetObjectsAllocated() local
238 total += thread->GetThreadLocalObjectsAllocated(); in GetObjectsAllocated()
241 return total; in GetObjectsAllocated()
Dlarge_object_space.cc165 size_t total = 0; in FreeList() local
170 total += Free(self, ptrs[i]); in FreeList()
172 return total; in FreeList()
/art/runtime/native/
Ddalvik_system_VMRuntime.cc358 static void PreloadDexCachesStatsTotal(DexCacheStats* total) { in PreloadDexCachesStatsTotal() argument
368 total->num_strings += dex_file->NumStringIds(); in PreloadDexCachesStatsTotal()
369 total->num_fields += dex_file->NumFieldIds(); in PreloadDexCachesStatsTotal()
370 total->num_methods += dex_file->NumMethodIds(); in PreloadDexCachesStatsTotal()
371 total->num_types += dex_file->NumTypeIds(); in PreloadDexCachesStatsTotal()
424 DexCacheStats total; in VMRuntime_preloadDexCaches() local
428 PreloadDexCachesStatsTotal(&total); in VMRuntime_preloadDexCaches()
498 total.num_strings, before.num_strings, after.num_strings); in VMRuntime_preloadDexCaches()
500 total.num_types, before.num_types, after.num_types); in VMRuntime_preloadDexCaches()
502 total.num_fields, before.num_fields, after.num_fields); in VMRuntime_preloadDexCaches()
[all …]
/art/runtime/
Dreference_table.cc134 size_t total = identical + equiv + 1; in DumpSummaryLine() local
135 std::string msg(StringPrintf("%5zd of %s", total, className.c_str())); in DumpSummaryLine()
/art/runtime/gc/
Dheap.cc1394 size_t total = 0; in GetObjectsAllocated() local
1396 total += space->GetObjectsAllocated(); in GetObjectsAllocated()
1398 return total; in GetObjectsAllocated()