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

/art/oatdump/
H A Doatdump_test.h194 size_t total = 0; local
211 total += bytes_read;
232 EXPECT_EQ(total, 0u);
234 EXPECT_GT(total, 0u);
236 LOG(INFO) << "Processed bytes " << total;
H A Doatdump.cc875 int64_t total,
876 const char* sum_of = "total") {
877 const double percent = (static_cast<double>(size) / static_cast<double>(total)) * 100;
1008 // If we inserted a new dex code item pointer, add to total code bytes.
872 Dump(VariableIndentationOutputStream& os, const char* name, int64_t size, int64_t total, const char* sum_of = �) argument
/art/runtime/gc/space/
H A Dbump_pointer_space.cc163 uint64_t total = static_cast<uint64_t>(bytes_allocated_.LoadRelaxed()); local
173 total += thread->GetThreadLocalBytesAllocated();
176 return total;
181 uint64_t total = static_cast<uint64_t>(objects_allocated_.LoadRelaxed()); local
191 total += thread->GetThreadLocalObjectsAllocated();
194 return total;
H A Dlarge_object_space.cc216 size_t total = 0; local
221 total += Free(self, ptrs[i]);
223 return total;
/art/runtime/
H A Dreference_table.cc108 size_t total = identical + equiv + 1; local
109 std::string msg(StringPrintf("%5zd of %s", total, className.c_str()));
H A Dstack_map.h1163 // Set the bit offset of the table. Adds the total bit size of the table to offset.
1449 size_t total = 0; local
1453 total += map.Size();
1455 return total;
/art/tools/titrace/
H A Dtitrace.cc136 size_t total = single_step_counter_; local
142 << ", % of total: " << (100.0 * inst_count / total);
/art/libartbase/base/
H A Dhash_set.h452 size_t total = 0; local
458 total += i + NumBuckets() - ideal_location;
460 total += i - ideal_location;
464 return total;
/art/runtime/base/
H A Darena_allocator.cc343 size_t total = 0; local
346 total += arena->GetBytesAllocated();
348 return total;
385 size_t total = ptr_ - begin_; local
389 total += cur_arena->GetBytesAllocated();
392 return total;
/art/runtime/native/
H A Ddalvik_system_VMRuntime.cc464 static void PreloadDexCachesStatsTotal(DexCacheStats* total) { argument
474 total->num_strings += dex_file->NumStringIds();
475 total->num_fields += dex_file->NumFieldIds();
476 total->num_methods += dex_file->NumMethodIds();
477 total->num_types += dex_file->NumTypeIds();
539 DexCacheStats total; local
543 PreloadDexCachesStatsTotal(&total);
608 LOG(INFO) << StringPrintf("VMRuntime.preloadDexCaches strings total=%d before=%d after=%d",
609 total.num_strings, before.num_strings, after.num_strings);
610 LOG(INFO) << StringPrintf("VMRuntime.preloadDexCaches types total
[all...]
/art/tools/dmtracedump/
H A Dtracedump.cc1385 double total = sumThreadTime; local
1394 double per = 100.0 * method->elapsedExclusive / total;
1395 double sum_per = 100.0 * sum / total;
1514 printf("index %%/total %%/self index calls usecs name\n");
1516 double total = sumThreadTime; local
1544 double per = 100.0 * method->elapsedInclusive / total;
1722 printf("Cycles %%/total Cumul.%% &nbsp;Calls+Recur&nbsp; Class</div>\n");
1724 printf(" Cycles %%/total Cumul.%% Calls+Recur Class\n");
1728 double total = sumThreadTime; local
1735 double per = 100.0 * pClass->elapsedExclusive / total;
1938 double total = sumThreadTime; local
[all...]
/art/runtime/gc/
H A Dheap.cc1143 << " total=" << seen_backtrace_count_.LoadRelaxed() +
1770 size_t total = 0; local
1772 total += space->GetObjectsAllocated();
1774 return total;
1778 uint64_t total = GetObjectsFreedEver(); local
1781 total += GetObjectsAllocated();
1783 return total;
2667 << " total " << PrettyDuration((duration / 1000) * 1000);

Completed in 341 milliseconds