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

/art/runtime/gc/space/
H A Dbump_pointer_space.cc210 uint64_t total = static_cast<uint64_t>(bytes_allocated_.LoadRelaxed()); local
220 total += thread->GetThreadLocalBytesAllocated();
223 return total;
228 uint64_t total = static_cast<uint64_t>(objects_allocated_.LoadRelaxed()); local
238 total += thread->GetThreadLocalObjectsAllocated();
241 return total;
H A Dlarge_object_space.cc165 size_t total = 0; local
170 total += Free(self, ptrs[i]);
172 return total;
/art/runtime/native/
H A Ddalvik_system_VMRuntime.cc358 static void PreloadDexCachesStatsTotal(DexCacheStats* total) { argument
368 total->num_strings += dex_file->NumStringIds();
369 total->num_fields += dex_file->NumFieldIds();
370 total->num_methods += dex_file->NumMethodIds();
371 total->num_types += dex_file->NumTypeIds();
424 DexCacheStats total; local
428 PreloadDexCachesStatsTotal(&total);
497 LOG(INFO) << StringPrintf("VMRuntime.preloadDexCaches strings total=%d before=%d after=%d",
498 total.num_strings, before.num_strings, after.num_strings);
499 LOG(INFO) << StringPrintf("VMRuntime.preloadDexCaches types total
[all...]
/art/runtime/
H A Dreference_table.cc134 size_t total = identical + equiv + 1; local
135 std::string msg(StringPrintf("%5zd of %s", total, className.c_str()));
/art/runtime/gc/
H A Dheap.cc816 os << collector->GetName() << " total time: " << PrettyDuration(total_ns)
819 << " objects with total size " << PrettySize(freed_bytes) << "\n"
1394 size_t total = 0; local
1396 total += space->GetObjectsAllocated();
1398 return total;
2196 << " total " << PrettyDuration((duration / 1000) * 1000);

Completed in 62 milliseconds