Home
last modified time | relevance | path

Searched refs:total (Results 1 – 8 of 8) 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/compiler/utils/
Darena_allocator.cc181 size_t total = 0; in GetBytesAllocated() local
184 total += arena->GetBytesAllocated(); in GetBytesAllocated()
186 return total; in GetBytesAllocated()
/art/runtime/base/
Dhash_set.h273 size_t total = 0; in TotalProbeDistance() local
279 total += i + NumBuckets() - ideal_location; in TotalProbeDistance()
281 total += i - ideal_location; in TotalProbeDistance()
285 return total; in TotalProbeDistance()
/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/mirror/
Dart_method.h546 size_t total = sizeof(ArtMethod) - sizeof(PtrSizedFields); in SizeWithoutPointerFields() local
549 total += pointer_size - sizeof(uint32_t); in SizeWithoutPointerFields()
551 return total; in SizeWithoutPointerFields()
/art/runtime/gc/
Dheap.cc1446 size_t total = 0; in GetObjectsAllocated() local
1448 total += space->GetObjectsAllocated(); in GetObjectsAllocated()
1450 return total; in GetObjectsAllocated()