Home
last modified time | relevance | path

Searched refs:total (Results 1 – 8 of 8) 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/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.cc216 size_t total = 0; in FreeList() local
221 total += Free(self, ptrs[i]); in FreeList()
223 return total; in FreeList()
/art/runtime/base/
Darena_allocator.cc211 size_t total = 0; in GetBytesAllocated() local
214 total += arena->GetBytesAllocated(); in GetBytesAllocated()
216 return total; in GetBytesAllocated()
242 size_t total = ptr_ - begin_; in BytesUsed() local
246 total += cur_arena->GetBytesAllocated(); in BytesUsed()
249 return total; in BytesUsed()
Dhash_set.h348 size_t total = 0; in TotalProbeDistance() local
354 total += i + NumBuckets() - ideal_location; in TotalProbeDistance()
356 total += i - ideal_location; in TotalProbeDistance()
360 return total; in TotalProbeDistance()
/art/runtime/native/
Ddalvik_system_VMRuntime.cc408 static void PreloadDexCachesStatsTotal(DexCacheStats* total) { in PreloadDexCachesStatsTotal() argument
418 total->num_strings += dex_file->NumStringIds(); in PreloadDexCachesStatsTotal()
419 total->num_fields += dex_file->NumFieldIds(); in PreloadDexCachesStatsTotal()
420 total->num_methods += dex_file->NumMethodIds(); in PreloadDexCachesStatsTotal()
421 total->num_types += dex_file->NumTypeIds(); in PreloadDexCachesStatsTotal()
474 DexCacheStats total; in VMRuntime_preloadDexCaches() local
478 PreloadDexCachesStatsTotal(&total); in VMRuntime_preloadDexCaches()
547 total.num_strings, before.num_strings, after.num_strings); in VMRuntime_preloadDexCaches()
549 total.num_types, before.num_types, after.num_types); in VMRuntime_preloadDexCaches()
551 total.num_fields, before.num_fields, after.num_fields); in VMRuntime_preloadDexCaches()
[all …]
/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/runtime/gc/
Dheap.cc1670 size_t total = 0; in GetObjectsAllocated() local
1674 total += space->GetObjectsAllocated(); in GetObjectsAllocated()
1678 return total; in GetObjectsAllocated()
1682 uint64_t total = GetObjectsFreedEver(); in GetObjectsAllocatedEver() local
1685 total += GetObjectsAllocated(); in GetObjectsAllocatedEver()
1687 return total; in GetObjectsAllocatedEver()