Home
last modified time | relevance | path

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

12

/art/test/665-checker-simd-zero/src/
DMain.java231 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/
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/libartbase/base/
Dstats-inl.h33 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()
Dmalloc_arena_pool.cc126 size_t total = 0; in GetBytesAllocated() local
129 total += arena->GetBytesAllocated(); in GetBytesAllocated()
131 return total; in GetBytesAllocated()
Darena_allocator.cc197 size_t total = ptr_ - begin_; in BytesUsed() local
201 total += cur_arena->GetBytesAllocated(); in BytesUsed()
204 return total; in BytesUsed()
Dstats.h60 double total,
Dhash_set.h562 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/
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-stdout.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/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;
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/
DSite.java337 Size total = Size.ZERO; in getTotalSize() local
339 total = total.plus(size); in getTotalSize()
341 return total; in getTotalSize()
/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/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/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/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/libartbase/base/metrics/
DREADME.md17 events, counting the total amount of time spent in a section of code, and other
/art/libprofile/profile/
Dprofile_compilation_info.cc1956 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/
Dheap.cc1985 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()

12