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

12

/art/test/478-checker-inline-noreturn/src/
H A DMain.java50 int total = 0;
52 total += $opt$noinline$Function(x, max_y);
54 return total;
/art/test/478-checker-inliner-nested-loop/src/
H A DMain.java44 int total = 0;
47 total += Inline(x, y);
50 return total;
/art/test/004-NativeAllocations/src-art/
H A DMain.java56 long total = 0;
59 total += size;
75 while (total > 0) {
77 total -= size;
88 long total = 0;
91 total += size;
94 while (total > 0) {
96 total -= size;
/art/test/665-checker-simd-zero/src/
H A DMain.java151 int total = 1111;
153 boolean[] xz = new boolean[total];
154 byte[] xb = new byte[total];
155 char[] xc = new char[total];
156 short[] xs = new short[total];
157 int[] xi = new int[total];
158 long[] xl = new long[total];
159 float[] xf = new float[total];
160 double[] xd = new double[total];
162 for (int i = 0; i < total;
[all...]
/art/test/651-checker-char-simd-minmax/src/
H A DMain.java93 int total = interesting.length * interesting.length;
94 char[] x = new char[total];
95 char[] y = new char[total];
96 char[] z = new char[total];
109 for (int i = 0; i < total; i++) {
114 for (int i = 0; i < total; i++) {
119 for (int i = 0; i < total; i++) {
/art/test/651-checker-byte-simd-minmax/src/
H A DMain.java147 int total = 256 * 256;
148 byte[] x = new byte[total];
149 byte[] y = new byte[total];
150 byte[] z = new byte[total];
163 for (int i = 0; i < total; i++) {
168 for (int i = 0; i < total; i++) {
173 for (int i = 0; i < total; i++) {
178 for (int i = 0; i < total; i++) {
183 for (int i = 0; i < total; i++) {
/art/test/651-checker-short-simd-minmax/src/
H A DMain.java161 int total = interesting.length * interesting.length;
162 short[] x = new short[total];
163 short[] y = new short[total];
164 short[] z = new short[total];
177 for (int i = 0; i < total; i++) {
182 for (int i = 0; i < total; i++) {
187 for (int i = 0; i < total; i++) {
192 for (int i = 0; i < total; i++) {
197 for (int i = 0; i < total; i++) {
/art/test/651-checker-double-simd-minmax/src/
H A DMain.java86 int total = interesting.length * interesting.length;
87 double[] x = new double[total];
88 double[] y = new double[total];
89 double[] z = new double[total];
102 for (int i = 0; i < total; i++) {
107 for (int i = 0; i < total; i++) {
/art/test/651-checker-float-simd-minmax/src/
H A DMain.java86 int total = interesting.length * interesting.length;
87 float[] x = new float[total];
88 float[] y = new float[total];
89 float[] z = new float[total];
102 for (int i = 0; i < total; i++) {
107 for (int i = 0; i < total; i++) {
/art/test/651-checker-int-simd-minmax/src/
H A DMain.java70 int total = interesting.length * interesting.length;
71 int[] x = new int[total];
72 int[] y = new int[total];
73 int[] z = new int[total];
86 for (int i = 0; i < total; i++) {
91 for (int i = 0; i < total; i++) {
/art/test/651-checker-long-simd-minmax/src/
H A DMain.java87 int total = interesting.length * interesting.length;
88 long[] x = new long[total];
89 long[] y = new long[total];
90 long[] z = new long[total];
103 for (int i = 0; i < total; i++) {
108 for (int i = 0; i < total; i++) {
/art/tools/ahat/src/main/com/android/ahat/
H A DHeapTable.java86 long total = 0;
91 total += size;
96 vals.add(DocString.size(total, elem.isPlaceHolder()));
97 vals.add(DocString.delta(elem.isPlaceHolder(), base.isPlaceHolder(), total, basetotal));
126 long total = 0;
131 total += size;
136 vals.add(DocString.size(total, false));
137 vals.add(DocString.delta(false, false, total, basetotal));
/art/runtime/gc/space/
H A Dbump_pointer_space.cc163 uint64_t total = static_cast<uint64_t>(bytes_allocated_.LoadRelaxed()); local
173 total += thread->GetThreadLocalBytesAllocated();
176 return total;
181 uint64_t total = static_cast<uint64_t>(objects_allocated_.LoadRelaxed()); local
191 total += thread->GetThreadLocalObjectsAllocated();
194 return total;
H A Dlarge_object_space.cc216 size_t total = 0; local
221 total += Free(self, ptrs[i]);
223 return total;
/art/oatdump/
H A Doatdump_test.h194 size_t total = 0; local
211 total += bytes_read;
232 EXPECT_EQ(total, 0u);
234 EXPECT_GT(total, 0u);
236 LOG(INFO) << "Processed bytes " << total;
/art/tools/ahat/src/main/com/android/ahat/heapdump/
H A DSite.java53 // The total size of objects allocated in this site (including child sites),
208 // Count up the total sizes by heap.
247 * @return the total shallow size of objects in this site
316 * @return total shallow size of objects in this site
319 Size total = Size.ZERO;
321 total = total.plus(size);
323 return total;
/art/runtime/base/
H A Darena_allocator.cc343 size_t total = 0; local
346 total += arena->GetBytesAllocated();
348 return total;
385 size_t total = ptr_ - begin_; local
389 total += cur_arena->GetBytesAllocated();
392 return total;
/art/runtime/native/
H A Ddalvik_system_VMRuntime.cc464 static void PreloadDexCachesStatsTotal(DexCacheStats* total) { argument
474 total->num_strings += dex_file->NumStringIds();
475 total->num_fields += dex_file->NumFieldIds();
476 total->num_methods += dex_file->NumMethodIds();
477 total->num_types += dex_file->NumTypeIds();
539 DexCacheStats total; local
543 PreloadDexCachesStatsTotal(&total);
608 LOG(INFO) << StringPrintf("VMRuntime.preloadDexCaches strings total=%d before=%d after=%d",
609 total.num_strings, before.num_strings, after.num_strings);
610 LOG(INFO) << StringPrintf("VMRuntime.preloadDexCaches types total
[all...]
/art/tools/titrace/
H A Dtitrace.cc136 size_t total = single_step_counter_; local
142 << ", % of total: " << (100.0 * inst_count / total);
/art/libartbase/base/
H A Dhash_set.h452 size_t total = 0; local
458 total += i + NumBuckets() - ideal_location;
460 total += i - ideal_location;
464 return total;
/art/runtime/
H A Dreference_table.cc108 size_t total = identical + equiv + 1; local
109 std::string msg(StringPrintf("%5zd of %s", total, className.c_str()));
H A Dstack_map.h1163 // Set the bit offset of the table. Adds the total bit size of the table to offset.
1449 size_t total = 0; local
1453 total += map.Size();
1455 return total;
/art/tools/dmtracedump/
H A Dtracedump.cc1385 double total = sumThreadTime; local
1394 double per = 100.0 * method->elapsedExclusive / total;
1395 double sum_per = 100.0 * sum / total;
1514 printf("index %%/total %%/self index calls usecs name\n");
1516 double total = sumThreadTime; local
1544 double per = 100.0 * method->elapsedInclusive / total;
1722 printf("Cycles %%/total Cumul.%% &nbsp;Calls+Recur&nbsp; Class</div>\n");
1724 printf(" Cycles %%/total Cumul.%% Calls+Recur Class\n");
1728 double total = sumThreadTime; local
1735 double per = 100.0 * pClass->elapsedExclusive / total;
1938 double total = sumThreadTime; local
[all...]
/art/runtime/jit/
H A Dprofile_compilation_info.cc1623 uint32_t total = 0;
1625 total += dex_data->method_map.size();
1627 return total;
1631 uint32_t total = 0;
1633 total += dex_data->class_set.size();
1635 return total;
1868 // * For every index i, add (S+i) % (N - total number of methods/classes) to profile with the
/art/runtime/gc/
H A Dheap.cc1143 << " total=" << seen_backtrace_count_.LoadRelaxed() +
1770 size_t total = 0; local
1772 total += space->GetObjectsAllocated();
1774 return total;
1778 uint64_t total = GetObjectsFreedEver(); local
1781 total += GetObjectsAllocated();
1783 return total;
2667 << " total " << PrettyDuration((duration / 1000) * 1000);

Completed in 8007 milliseconds

12