Home
last modified time | relevance | path

Searched refs:total (Results 1 – 22 of 22) 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.cc215 size_t total = 0; in FreeList() local
220 total += Free(self, ptrs[i]); in FreeList()
222 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.h507 size_t total = 0; in TotalProbeDistance() local
513 total += i + NumBuckets() - ideal_location; in TotalProbeDistance()
515 total += i - ideal_location; in TotalProbeDistance()
519 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.h247 size_t total = 0; in Exec() local
251 total += len; in Exec()
332 EXPECT_EQ(total, 0u); in Exec()
334 EXPECT_GT(total, 0u); in Exec()
346 oss << "Processed bytes " << total << ":" << std::endl; in Exec()
Doatdump.cc803 double total) { in DumpStats() argument
805 double percent = 100.0 * stats.Value() / total; in DumpStats()
828 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.cc495 static void PreloadDexCachesStatsTotal(DexCacheStats* total) { in PreloadDexCachesStatsTotal() argument
505 total->num_strings += dex_file->NumStringIds(); in PreloadDexCachesStatsTotal()
506 total->num_fields += dex_file->NumFieldIds(); in PreloadDexCachesStatsTotal()
507 total->num_methods += dex_file->NumMethodIds(); in PreloadDexCachesStatsTotal()
508 total->num_types += dex_file->NumTypeIds(); in PreloadDexCachesStatsTotal()
570 DexCacheStats total; in VMRuntime_preloadDexCaches() local
574 PreloadDexCachesStatsTotal(&total); in VMRuntime_preloadDexCaches()
622 total.num_strings, before.num_strings, after.num_strings); in VMRuntime_preloadDexCaches()
624 total.num_types, before.num_types, after.num_types); in VMRuntime_preloadDexCaches()
626 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/runtime/gc/
Dheap.cc1919 size_t total = 0; in GetObjectsAllocated() local
1921 total += space->GetObjectsAllocated(); in GetObjectsAllocated()
1923 return total; in GetObjectsAllocated()
1927 uint64_t total = GetObjectsFreedEver(); in GetObjectsAllocatedEver() local
1930 total += GetObjectsAllocated(); in GetObjectsAllocatedEver()
1932 return total; in GetObjectsAllocatedEver()