Home
last modified time | relevance | path

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

/art/test/478-checker-inliner-nested-loop/src/
DMain.java44 int total = 0; in NestedLoop() local
47 total += Inline(x, y); in NestedLoop()
50 return total; in NestedLoop()
/art/tools/ahat/src/
DHeapTable.java83 long total = 0; in render() local
86 total += size; in render()
90 vals.add(DocString.format("%,14d", total)); in render()
114 long total = 0; in render() local
117 total += size; in render()
121 vals.add(DocString.format("%,14d", total)); in render()
DNativeAllocationsHandler.java78 long total = 0; in handle() local
80 total += alloc.size; in handle()
84 DocString.format("%,14d", total), in handle()
DAhatSnapshot.java88 long total = 0; in AhatSnapshot() local
92 total += inst.getSize(); in AhatSnapshot()
130 mHeapSizes.put(heap, total); in AhatSnapshot()
/art/runtime/gc/space/
Dbump_pointer_space.cc215 uint64_t total = static_cast<uint64_t>(bytes_allocated_.LoadRelaxed()); in GetBytesAllocated() local
225 total += thread->GetThreadLocalBytesAllocated(); in GetBytesAllocated()
228 return total; in GetBytesAllocated()
233 uint64_t total = static_cast<uint64_t>(objects_allocated_.LoadRelaxed()); in GetObjectsAllocated() local
243 total += thread->GetThreadLocalObjectsAllocated(); in GetObjectsAllocated()
246 return total; in GetObjectsAllocated()
Dlarge_object_space.cc221 size_t total = 0; in FreeList() local
226 total += Free(self, ptrs[i]); in FreeList()
228 return total; in FreeList()
/art/runtime/base/
Darena_allocator.cc261 size_t total = 0; in GetBytesAllocated() local
264 total += arena->GetBytesAllocated(); in GetBytesAllocated()
266 return total; in GetBytesAllocated()
292 size_t total = ptr_ - begin_; in BytesUsed() local
296 total += cur_arena->GetBytesAllocated(); in BytesUsed()
299 return total; in BytesUsed()
Dhash_set.h446 size_t total = 0; in TotalProbeDistance() local
452 total += i + NumBuckets() - ideal_location; in TotalProbeDistance()
454 total += i - ideal_location; in TotalProbeDistance()
458 return total; in TotalProbeDistance()
/art/runtime/native/
Ddalvik_system_VMRuntime.cc415 static void PreloadDexCachesStatsTotal(DexCacheStats* total) { in PreloadDexCachesStatsTotal() argument
425 total->num_strings += dex_file->NumStringIds(); in PreloadDexCachesStatsTotal()
426 total->num_fields += dex_file->NumFieldIds(); in PreloadDexCachesStatsTotal()
427 total->num_methods += dex_file->NumMethodIds(); in PreloadDexCachesStatsTotal()
428 total->num_types += dex_file->NumTypeIds(); in PreloadDexCachesStatsTotal()
484 DexCacheStats total; in VMRuntime_preloadDexCaches() local
488 PreloadDexCachesStatsTotal(&total); in VMRuntime_preloadDexCaches()
557 total.num_strings, before.num_strings, after.num_strings); in VMRuntime_preloadDexCaches()
559 total.num_types, before.num_types, after.num_types); in VMRuntime_preloadDexCaches()
561 total.num_fields, before.num_fields, after.num_fields); in VMRuntime_preloadDexCaches()
[all …]
/art/runtime/jit/
Doffline_profiling_info.cc574 uint32_t total = 0; in GetNumberOfMethods() local
576 total += it.second.method_set.size(); in GetNumberOfMethods()
578 return total; in GetNumberOfMethods()
582 uint32_t total = 0; in GetNumberOfResolvedClasses() local
584 total += it.second.class_set.size(); in GetNumberOfResolvedClasses()
586 return total; in GetNumberOfResolvedClasses()
/art/runtime/
Dreference_table.cc101 size_t total = identical + equiv + 1; in DumpSummaryLine() local
102 std::string msg(StringPrintf("%5zd of %s", total, className.c_str())); in DumpSummaryLine()
/art/tools/dmtracedump/
Dtracedump.cc1381 double total = sumThreadTime; in printExclusiveProfile() local
1390 double per = 100.0 * method->elapsedExclusive / total; in printExclusiveProfile()
1391 double sum_per = 100.0 * sum / total; in printExclusiveProfile()
1512 double total = sumThreadTime; in printInclusiveProfile() local
1540 double per = 100.0 * method->elapsedInclusive / total; in printInclusiveProfile()
1724 double total = sumThreadTime; in printClassProfiles() local
1731 double per = 100.0 * pClass->elapsedExclusive / total; in printClassProfiles()
1732 double sum_per = 100.0 * sum / total; in printClassProfiles()
1934 double total = sumThreadTime; in printMethodProfiles() local
1941 double per = 100.0 * pUnique->elapsedExclusive / total; in printMethodProfiles()
[all …]
/art/runtime/gc/
Dheap.cc1875 size_t total = 0; in GetObjectsAllocated() local
1877 total += space->GetObjectsAllocated(); in GetObjectsAllocated()
1879 return total; in GetObjectsAllocated()
1883 uint64_t total = GetObjectsFreedEver(); in GetObjectsAllocatedEver() local
1886 total += GetObjectsAllocated(); in GetObjectsAllocatedEver()
1888 return total; in GetObjectsAllocatedEver()