/art/test/665-checker-simd-zero/src/ |
D | Main.java | 151 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/ |
D | Main.java | 56 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/ |
D | Main.java | 50 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/ |
D | Main.java | 44 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/ |
D | HeapTable.java | 86 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/ |
D | expected.txt | 20 total: 4 32 total: 4 46 total: 4 58 total: 4
|
/art/runtime/gc/space/ |
D | bump_pointer_space.cc | 172 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()
|
D | large_object_space.cc | 220 size_t total = 0; in FreeList() local 225 total += Free(self, ptrs[i]); in FreeList() 227 return total; in FreeList()
|
/art/libartbase/base/ |
D | malloc_arena_pool.cc | 126 size_t total = 0; in GetBytesAllocated() local 129 total += arena->GetBytesAllocated(); in GetBytesAllocated() 131 return total; in GetBytesAllocated()
|
D | arena_allocator.cc | 196 size_t total = ptr_ - begin_; in BytesUsed() local 200 total += cur_arena->GetBytesAllocated(); in BytesUsed() 203 return total; in BytesUsed()
|
D | hash_set.h | 520 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/ |
D | mem_map_arena_pool.cc | 129 size_t total = 0; in GetBytesAllocated() local 132 total += arena->GetBytesAllocated(); in GetBytesAllocated() 134 return total; in GetBytesAllocated()
|
/art/oatdump/ |
D | oatdump_test.h | 258 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;
|
D | oatdump.cc | 806 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/ |
D | Site.java | 337 Size total = Size.ZERO; in getTotalSize() local 339 total = total.plus(size); in getTotalSize() 341 return total; in getTotalSize()
|
/art/runtime/native/ |
D | dalvik_system_VMRuntime.cc | 500 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/ |
D | dexanalyze_experiments.cc | 174 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()
|
D | dexanalyze_bytecode.cc | 78 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/ |
D | titrace.cc | 136 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/ |
D | README.md | 49 > `dalvikvm32 I 08-30 14:51:20 84818 84818 fieldnull.cc:97] Field name null count total count`
|
/art/runtime/ |
D | reference_table.cc | 108 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/ |
D | tracedump.cc | 1385 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/ |
D | profile_compilation_info.cc | 1635 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/ |
D | heap.cc | 1927 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/ |
D | compiler_driver.cc | 136 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()
|