/art/test/665-checker-simd-zero/src/ |
D | Main.java | 231 int total = 1111; in main() local 233 boolean[] xz = new boolean[total]; in main() 234 byte[] xb = new byte[total]; in main() 235 char[] xc = new char[total]; in main() 236 short[] xs = new short[total]; in main() 237 int[] xi = new int[total]; in main() 238 long[] xl = new long[total]; in main() 239 float[] xf = new float[total]; in main() 240 double[] xd = new double[total]; in main() 242 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/libartbase/base/ |
D | stats-inl.h | 33 double total, in Dump() argument 36 double percent = total > 0 ? 100.0 * Value() / total : 0; in Dump() 65 it.second.Dump(os, it.first.second, total, unit_size, unit); in Dump()
|
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 | 197 size_t total = ptr_ - begin_; in BytesUsed() local 201 total += cur_arena->GetBytesAllocated(); in BytesUsed() 204 return total; in BytesUsed()
|
D | stats.h | 60 double total,
|
D | hash_set.h | 562 size_t total = 0; in TotalProbeDistance() local 568 total += i + NumBuckets() - ideal_location; in TotalProbeDistance() 570 total += i - ideal_location; in TotalProbeDistance() 574 return total; in TotalProbeDistance()
|
/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-stdout.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/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; 355 EXPECT_EQ(total, 0u); 357 EXPECT_GT(total, 0u); 369 oss << "Processed bytes " << total << ":" << std::endl;
|
/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/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/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/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/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/libartbase/base/metrics/ |
D | README.md | 17 events, counting the total amount of time spent in a section of code, and other
|
/art/libprofile/profile/ |
D | profile_compilation_info.cc | 1956 uint32_t total = 0; in GetNumberOfMethods() local 1958 total += dex_data->method_map.size(); in GetNumberOfMethods() 1960 return total; in GetNumberOfMethods() 1964 uint32_t total = 0; in GetNumberOfResolvedClasses() local 1966 total += dex_data->class_set.size(); in GetNumberOfResolvedClasses() 1968 return total; in GetNumberOfResolvedClasses()
|
/art/runtime/gc/ |
D | heap.cc | 1985 size_t total = 0; in GetObjectsAllocated() local 1987 total += space->GetObjectsAllocated(); in GetObjectsAllocated() 1989 return total; in GetObjectsAllocated() 1993 uint64_t total = GetObjectsFreedEver(); in GetObjectsAllocatedEver() local 1996 total += GetObjectsAllocated(); in GetObjectsAllocatedEver() 1998 return total; in GetObjectsAllocatedEver()
|