Home
last modified time | relevance | path

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

/art/test/665-checker-simd-zero/src/
DMain.java151 int total = 1111; in main() local
153 boolean[] xz = new boolean[total]; in main()
154 byte[] xb = new byte[total]; in main()
155 char[] xc = new char[total]; in main()
156 short[] xs = new short[total]; in main()
157 int[] xi = new int[total]; in main()
158 long[] xl = new long[total]; in main()
159 float[] xf = new float[total]; in main()
160 double[] xd = new double[total]; in main()
162 for (int i = 0; i < total; i++) { in main()
[all …]
/art/test/004-NativeAllocations/src-art/
DMain.java56 long total = 0; in checkRegisterNativeAllocation() local
59 total += size; in checkRegisterNativeAllocation()
75 while (total > 0) { in checkRegisterNativeAllocation()
77 total -= size; in checkRegisterNativeAllocation()
91 long total = 0; in triggerBlockingRegisterNativeAllocation() local
94 total += size; in triggerBlockingRegisterNativeAllocation()
97 while (total > 0) { in triggerBlockingRegisterNativeAllocation()
99 total -= size; in triggerBlockingRegisterNativeAllocation()
/art/test/478-checker-inline-noreturn/src/
DMain.java50 int total = 0; in callerLoop() local
52 total += $opt$noinline$Function(x, max_y); in callerLoop()
54 return total; in callerLoop()
/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/main/com/android/ahat/
DHeapTable.java86 long total = 0; in render() local
91 total += size; in render()
96 vals.add(DocString.size(total, elem.isPlaceHolder())); in render()
97 vals.add(DocString.delta(elem.isPlaceHolder(), base.isPlaceHolder(), total, basetotal)); in render() local
126 long total = 0; in render() local
131 total += size; in render()
136 vals.add(DocString.size(total, false)); in render()
137 vals.add(DocString.delta(false, false, total, basetotal)); in render()
/art/test/626-const-class-linking/
Dexpected.txt20 total: 4
32 total: 4
46 total: 4
58 total: 4
/art/runtime/gc/space/
Dbump_pointer_space.cc172 uint64_t total = static_cast<uint64_t>(bytes_allocated_.load(std::memory_order_relaxed)); in GetBytesAllocated() local
182 total += thread->GetThreadLocalBytesAllocated(); in GetBytesAllocated()
185 return total; in GetBytesAllocated()
190 uint64_t total = static_cast<uint64_t>(objects_allocated_.load(std::memory_order_relaxed)); in GetObjectsAllocated() local
200 total += thread->GetThreadLocalObjectsAllocated(); in GetObjectsAllocated()
203 return total; in GetObjectsAllocated()
Dlarge_object_space.cc220 size_t total = 0; in FreeList() local
225 total += Free(self, ptrs[i]); in FreeList()
227 return total; in FreeList()
/art/libartbase/base/
Dmalloc_arena_pool.cc126 size_t total = 0; in GetBytesAllocated() local
129 total += arena->GetBytesAllocated(); in GetBytesAllocated()
131 return total; in GetBytesAllocated()
Darena_allocator.cc196 size_t total = ptr_ - begin_; in BytesUsed() local
200 total += cur_arena->GetBytesAllocated(); in BytesUsed()
203 return total; in BytesUsed()
Dhash_set.h520 size_t total = 0; in TotalProbeDistance() local
526 total += i + NumBuckets() - ideal_location; in TotalProbeDistance()
528 total += i - ideal_location; in TotalProbeDistance()
532 return total; in TotalProbeDistance()
/art/runtime/base/
Dmem_map_arena_pool.cc129 size_t total = 0; in GetBytesAllocated() local
132 total += arena->GetBytesAllocated(); in GetBytesAllocated()
134 return total; in GetBytesAllocated()
/art/oatdump/
Doatdump_test.h258 size_t total = 0; variable
262 total += len;
352 EXPECT_EQ(total, 0u);
354 EXPECT_GT(total, 0u);
366 oss << "Processed bytes " << total << ":" << std::endl;
Doatdump.cc806 double total) { in DumpStats() argument
808 double percent = 100.0 * stats.Value() / total; in DumpStats()
831 DumpStats(os, it.first.second, it.second, total); in DumpStats()
/art/tools/ahat/src/main/com/android/ahat/heapdump/
DSite.java337 Size total = Size.ZERO; in getTotalSize() local
339 total = total.plus(size); in getTotalSize()
341 return total; in getTotalSize()
/art/runtime/native/
Ddalvik_system_VMRuntime.cc500 static void PreloadDexCachesStatsTotal(DexCacheStats* total) { in PreloadDexCachesStatsTotal() argument
510 total->num_strings += dex_file->NumStringIds(); in PreloadDexCachesStatsTotal()
511 total->num_fields += dex_file->NumFieldIds(); in PreloadDexCachesStatsTotal()
512 total->num_methods += dex_file->NumMethodIds(); in PreloadDexCachesStatsTotal()
513 total->num_types += dex_file->NumTypeIds(); in PreloadDexCachesStatsTotal()
575 DexCacheStats total; in VMRuntime_preloadDexCaches() local
579 PreloadDexCachesStatsTotal(&total); in VMRuntime_preloadDexCaches()
627 total.num_strings, before.num_strings, after.num_strings); in VMRuntime_preloadDexCaches()
629 total.num_types, before.num_types, after.num_types); in VMRuntime_preloadDexCaches()
631 total.num_fields, before.num_fields, after.num_fields); in VMRuntime_preloadDexCaches()
[all …]
/art/tools/dexanalyze/
Ddexanalyze_experiments.cc174 size_t total = std::accumulate(data.begin(), data.end(), 0u); in ProcessDexFiles() local
178 double ratio = static_cast<double>(c) / static_cast<double>(total); in ProcessDexFiles()
182 return avg_entropy * total; in ProcessDexFiles()
610 const uint64_t total = std::accumulate(arg_counts_, arg_counts_ + kMaxArgCount, 0u); in Dump() local
612 os << "args=" << i << ": " << Percent(arg_counts_[i], total) << "\n"; in Dump()
615 os << "One byte invoke savings: " << Percent(total, total_size) << "\n"; in Dump()
Ddexanalyze_bytecode.cc78 uint64_t total = 0u; local
81 total += pair.second;
87 os << Percent(pair.first, total) << " : ";
96 os << "other: " << Percent(other, total) << "\n";
/art/tools/jvmti-agents/titrace/
Dtitrace.cc136 size_t total = single_step_counter_; in Log() local
142 << ", % of total: " << (100.0 * inst_count / total); in Log()
/art/tools/jvmti-agents/field-null-percent/
DREADME.md49 > `dalvikvm32 I 08-30 14:51:20 84818 84818 fieldnull.cc:97] Field name null count total count`
/art/runtime/
Dreference_table.cc108 size_t total = identical + equiv + 1; in DumpSummaryLine() local
109 std::string msg(StringPrintf("%5zd of %s", total, className.c_str())); in DumpSummaryLine()
/art/tools/dmtracedump/
Dtracedump.cc1385 double total = sumThreadTime; in printExclusiveProfile() local
1394 double per = 100.0 * method->elapsedExclusive / total; in printExclusiveProfile()
1395 double sum_per = 100.0 * sum / total; in printExclusiveProfile()
1516 double total = sumThreadTime; in printInclusiveProfile() local
1544 double per = 100.0 * method->elapsedInclusive / total; in printInclusiveProfile()
1728 double total = sumThreadTime; in printClassProfiles() local
1735 double per = 100.0 * pClass->elapsedExclusive / total; in printClassProfiles()
1736 double sum_per = 100.0 * sum / total; in printClassProfiles()
1938 double total = sumThreadTime; in printMethodProfiles() local
1945 double per = 100.0 * pUnique->elapsedExclusive / total; in printMethodProfiles()
[all …]
/art/libprofile/profile/
Dprofile_compilation_info.cc1635 uint32_t total = 0; in GetNumberOfMethods() local
1637 total += dex_data->method_map.size(); in GetNumberOfMethods()
1639 return total; in GetNumberOfMethods()
1643 uint32_t total = 0; in GetNumberOfResolvedClasses() local
1645 total += dex_data->class_set.size(); in GetNumberOfResolvedClasses()
1647 return total; in GetNumberOfResolvedClasses()
/art/runtime/gc/
Dheap.cc1927 size_t total = 0; in GetObjectsAllocated() local
1929 total += space->GetObjectsAllocated(); in GetObjectsAllocated()
1931 return total; in GetObjectsAllocated()
1935 uint64_t total = GetObjectsFreedEver(); in GetObjectsAllocatedEver() local
1938 total += GetObjectsAllocated(); in GetObjectsAllocatedEver()
1940 return total; in GetObjectsAllocatedEver()
/art/dex2oat/driver/
Dcompiler_driver.cc136 const size_t total = std::accumulate( in Dump() local
143 DumpStat(class_status_count_[i], total - class_status_count_[i], oss.str().c_str()); in Dump()