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

/art/test/478-checker-inliner-nested-loop/src/
H A DMain.java44 int total = 0;
47 total += Inline(x, y);
50 return total;
/art/runtime/base/
H A Darena_allocator.cc211 size_t total = 0; local
214 total += arena->GetBytesAllocated();
216 return total;
242 size_t total = ptr_ - begin_; local
246 total += cur_arena->GetBytesAllocated();
249 return total;
H A Dhash_set.h348 size_t total = 0; local
354 total += i + NumBuckets() - ideal_location;
356 total += i - ideal_location;
360 return total;
/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.cc216 size_t total = 0; local
221 total += Free(self, ptrs[i]);
223 return total;
/art/runtime/native/
H A Ddalvik_system_VMRuntime.cc408 static void PreloadDexCachesStatsTotal(DexCacheStats* total) { argument
418 total->num_strings += dex_file->NumStringIds();
419 total->num_fields += dex_file->NumFieldIds();
420 total->num_methods += dex_file->NumMethodIds();
421 total->num_types += dex_file->NumTypeIds();
474 DexCacheStats total; local
478 PreloadDexCachesStatsTotal(&total);
546 LOG(INFO) << StringPrintf("VMRuntime.preloadDexCaches strings total=%d before=%d after=%d",
547 total.num_strings, before.num_strings, after.num_strings);
548 LOG(INFO) << StringPrintf("VMRuntime.preloadDexCaches types total
[all...]
/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/gc/
H A Dheap.cc1089 << " total=" << seen_backtrace_count_.LoadRelaxed() +
1670 size_t total = 0; local
1674 total += space->GetObjectsAllocated();
1678 return total;
1682 uint64_t total = GetObjectsFreedEver(); local
1685 total += GetObjectsAllocated();
1687 return total;
2513 << " total " << PrettyDuration((duration / 1000) * 1000);

Completed in 202 milliseconds