Searched defs:total (Results 1 - 8 of 8) sorted by relevance

/art/compiler/utils/
H A Darena_allocator.cc181 size_t total = 0; local
184 total += arena->GetBytesAllocated();
186 return total;
/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/mirror/
H A Dart_method.h546 size_t total = sizeof(ArtMethod) - sizeof(PtrSizedFields); local
549 total += pointer_size - sizeof(uint32_t);
551 return total;
/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/base/
H A Dhash_set.h273 size_t total = 0; local
279 total += i + NumBuckets() - ideal_location;
281 total += i - ideal_location;
285 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/gc/
H A Dheap.cc836 os << collector->GetName() << " total time: " << PrettyDuration(total_ns)
839 << " objects with total size " << PrettySize(freed_bytes) << "\n"
1446 size_t total = 0; local
1448 total += space->GetObjectsAllocated();
1450 return total;
2261 << " total " << PrettyDuration((duration / 1000) * 1000);

Completed in 156 milliseconds