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

/art/runtime/gc/space/
H A Dbump_pointer_space.cc215 uint64_t total = static_cast<uint64_t>(bytes_allocated_.LoadRelaxed()); local
225 total += thread->GetThreadLocalBytesAllocated();
228 return total;
233 uint64_t total = static_cast<uint64_t>(objects_allocated_.LoadRelaxed()); local
243 total += thread->GetThreadLocalObjectsAllocated();
246 return total;
H A Dlarge_object_space.cc221 size_t total = 0; local
226 total += Free(self, ptrs[i]);
228 return total;
/art/runtime/
H A Dreference_table.cc101 size_t total = identical + equiv + 1; local
102 std::string msg(StringPrintf("%5zd of %s", total, className.c_str()));
/art/runtime/base/
H A Darena_allocator.cc261 size_t total = 0; local
264 total += arena->GetBytesAllocated();
266 return total;
292 size_t total = ptr_ - begin_; local
296 total += cur_arena->GetBytesAllocated();
299 return total;
H A Dhash_set.h446 size_t total = 0; local
452 total += i + NumBuckets() - ideal_location;
454 total += i - ideal_location;
458 return total;
/art/runtime/jit/
H A Doffline_profiling_info.cc574 uint32_t total = 0; local
576 total += it.second.method_set.size();
578 return total;
582 uint32_t total = 0; local
584 total += it.second.class_set.size();
586 return total;
/art/runtime/native/
H A Ddalvik_system_VMRuntime.cc415 static void PreloadDexCachesStatsTotal(DexCacheStats* total) { argument
425 total->num_strings += dex_file->NumStringIds();
426 total->num_fields += dex_file->NumFieldIds();
427 total->num_methods += dex_file->NumMethodIds();
428 total->num_types += dex_file->NumTypeIds();
484 DexCacheStats total; local
488 PreloadDexCachesStatsTotal(&total);
556 LOG(INFO) << StringPrintf("VMRuntime.preloadDexCaches strings total=%d before=%d after=%d",
557 total.num_strings, before.num_strings, after.num_strings);
558 LOG(INFO) << StringPrintf("VMRuntime.preloadDexCaches types total
[all...]
/art/tools/dmtracedump/
H A Dtracedump.cc1381 double total = sumThreadTime; local
1390 double per = 100.0 * method->elapsedExclusive / total;
1391 double sum_per = 100.0 * sum / total;
1510 printf("index %%/total %%/self index calls usecs name\n");
1512 double total = sumThreadTime; local
1540 double per = 100.0 * method->elapsedInclusive / total;
1718 printf("Cycles %%/total Cumul.%% &nbsp;Calls+Recur&nbsp; Class</div>\n");
1720 printf(" Cycles %%/total Cumul.%% Calls+Recur Class\n");
1724 double total = sumThreadTime; local
1731 double per = 100.0 * pClass->elapsedExclusive / total;
1934 double total = sumThreadTime; local
[all...]
/art/runtime/gc/
H A Dheap.cc1287 << " total=" << seen_backtrace_count_.LoadRelaxed() +
1875 size_t total = 0; local
1877 total += space->GetObjectsAllocated();
1879 return total;
1883 uint64_t total = GetObjectsFreedEver(); local
1886 total += GetObjectsAllocated();
1888 return total;
2771 << " total " << PrettyDuration((duration / 1000) * 1000);

Completed in 240 milliseconds