Home
last modified time | relevance | path

Searched refs:h (Results 1 – 25 of 88) sorted by relevance

1234

/art/dexlayout/
Ddex_ir.cc62 [](const dex_ir::Header* h) { return h->StringIds().Size(); }, in __anon3c7c4fbb0102()
63 [](const dex_ir::Header* h) { return h->StringIds().GetOffset(); } in __anon3c7c4fbb0202()
67 [](const dex_ir::Header* h) { return h->TypeIds().Size(); }, in __anon3c7c4fbb0302()
68 [](const dex_ir::Header* h) { return h->TypeIds().GetOffset(); } in __anon3c7c4fbb0402()
72 [](const dex_ir::Header* h) { return h->ProtoIds().Size(); }, in __anon3c7c4fbb0502()
73 [](const dex_ir::Header* h) { return h->ProtoIds().GetOffset(); } in __anon3c7c4fbb0602()
77 [](const dex_ir::Header* h) { return h->FieldIds().Size(); }, in __anon3c7c4fbb0702()
78 [](const dex_ir::Header* h) { return h->FieldIds().GetOffset(); } in __anon3c7c4fbb0802()
82 [](const dex_ir::Header* h) { return h->MethodIds().Size(); }, in __anon3c7c4fbb0902()
83 [](const dex_ir::Header* h) { return h->MethodIds().GetOffset(); } in __anon3c7c4fbb0a02()
[all …]
/art/test/484-checker-register-hints/src/
DMain.java51 int h = live4; in test1() local
53 foo.field2 = e + i + h; in test1()
54 foo.field3 = f + i + h; in test1()
55 foo.field4 = g + i + h; in test1()
56 foo.field0 = h; in test1()
57 foo.field1 = i + h; in test1()
85 int h = live4; in test2() local
87 foo.field2 = e + i + h; in test2()
88 foo.field3 = f + i + h; in test2()
89 foo.field4 = g + i + h; in test2()
[all …]
/art/tools/cpp-define-generator/
Dglobals.def18 #include "base/bit_utils.h"
19 #include "base/callee_save_type.h"
20 #include "base/enums.h"
21 #include "base/globals.h"
22 #include "dex/modifiers.h"
23 #include "gc/accounting/card_table.h"
24 #include "gc/heap.h"
25 #include "interpreter/mterp/mterp.h"
26 #include "jit/jit.h"
27 #include "mirror/object.h"
[all …]
/art/test/529-long-split/src/
DMain.java38 int h = myField4; // EDI in testOddLow1() local
42 myField3 = h; // use of ESI in testOddLow1()
80 int h = myField4; // EDI in testNonFollowingHigh() local
84 myField3 = h; // use of EDI in testNonFollowingHigh()
120 int h = myField4; // EDX in testOddLow2() local
124 myField3 = h; // use of EDX in testOddLow2()
/art/test/405-optimizing-long-allocator/src/
DMain.java136 long h = a - b; in $opt$TestAgressiveLive1() local
151 h++; in $opt$TestAgressiveLive1()
152 } while (h != 5); in $opt$TestAgressiveLive1()
153 return a - b - c - d - e - f - g - h - i - j - k; in $opt$TestAgressiveLive1()
157 long h = a - b; in $opt$TestAgressiveLive2() local
162 h++; in $opt$TestAgressiveLive2()
163 } while (h != 5); in $opt$TestAgressiveLive2()
164 return a - b - c - d - e - f - g - h - i - j - k; in $opt$TestAgressiveLive2()
/art/test/404-optimizing-allocator/src/
DMain.java130 int h = a - b; in $opt$reg$TestAgressiveLive1() local
145 h++; in $opt$reg$TestAgressiveLive1()
146 } while (h != 5); in $opt$reg$TestAgressiveLive1()
147 return a - b - c - d - e - f - g - h - i - j - k; in $opt$reg$TestAgressiveLive1()
151 int h = a - b; in $opt$reg$TestAgressiveLive2() local
156 h++; in $opt$reg$TestAgressiveLive2()
157 } while (h != 5); in $opt$reg$TestAgressiveLive2()
158 return a - b - c - d - e - f - g - h - i - j - k; in $opt$reg$TestAgressiveLive2()
/art/test/440-stmp/src/
DMain.java24 baz(a, b, c, d, e, f, g, h, i, j, k, l, m, n, o); in bar()
28 float h, float i, float j, float k, float l, float m, float n, float o) { in baz() argument
29 System.out.println(a - b - c - d - e - f - g - h - i - j - k - l - m - n - o); in baz()
39 float h = 8.0f; field in Main
/art/runtime/
DAndroid.bp380 // asm_support_gen.h (used by asm_support.h) is generated with cpp-define-generator
411 // ART's macros.h depends on libbase's macros.h.
412 // Note: runtime_options.h depends on cmdline. But we don't really want to export this
467 "base/callee_save_type.h",
468 "base/locks.h",
469 "class_loader_context.h",
470 "class_status.h",
471 "debugger.h",
472 "gc_root.h",
473 "gc/allocator_type.h",
[all …]
/art/runtime/jit/
Dprofiling_info_test.cc255 Hotness h = info1.GetMethodHotness(MethodReference(m->GetDexFile(), m->GetDexMethodIndex())); in TEST_F() local
256 ASSERT_TRUE(h.IsHot()); in TEST_F()
257 ASSERT_TRUE(h.IsPostStartup()); in TEST_F()
274 Hotness h = info2.GetMethodHotness(MethodReference(m->GetDexFile(), m->GetDexMethodIndex())); in TEST_F() local
275 ASSERT_TRUE(h.IsHot()); in TEST_F()
276 ASSERT_TRUE(h.IsPostStartup()); in TEST_F()
279 Hotness h = info2.GetMethodHotness(MethodReference(m->GetDexFile(), m->GetDexMethodIndex())); in TEST_F() local
280 ASSERT_TRUE(h.IsHot()); in TEST_F()
281 ASSERT_TRUE(h.IsStartup()); in TEST_F()
312 Hotness h = info.GetMethodHotness(MethodReference(m->GetDexFile(), m->GetDexMethodIndex())); in TEST_F() local
[all …]
/art/test/451-spill-splot/src/
DMain.java29 double h = 7.0; in main() local
50 System.out.println(a + b + c + d + e + f + g + h + i + j); in main()
58 h = $noinline$computeDouble(); in main()
61 System.out.println(a + b + c + d + e + f + g + h + i + j); in main()
/art/test/958-methodhandle-stackframe/
Dexpected.txt2 char: h
11 char: h
/art/test/594-load-string-regression/src/
DMain.java36 Helper h = new Helper(); in $noinline$test() local
41 h.$noinline$printString(s); in $noinline$test()
/art/libartbase/base/
Dtransform_array_ref_test.cc40 auto add1 = [](const ValueHolder& h) { return h.value + 1; }; in TEST() argument
81 auto sub1 = [](ValueHolder& h) { return h.value - 1; }; in TEST() argument
114 int& operator()(ValueHolder& h) const { return h.value; } in TEST()
115 const int& operator()(const ValueHolder& h) const { return h.value; } in TEST()
Dtransform_iterator_test.cc43 auto add1 = [](const ValueHolder& h) { return h.value + 1; }; in TEST() argument
146 auto sub1 = [](const ValueHolder& h) { return h.value - 1; }; in TEST() argument
210 auto mul3 = [](const ValueHolder& h) { return h.value * 3; }; in TEST() argument
248 auto ref = [](const ValueHolder& h) -> const int& { return h.value; }; in TEST() argument
341 auto ref = [](ValueHolder& h) -> int& { return h.value; }; in TEST() argument
406 int& operator()(ValueHolder& h) const { return h.value; } in TEST()
407 const int& operator()(const ValueHolder& h) const { return h.value; } in TEST()
521 auto ref = [](ValueHolder& h) -> int& { return h.value; }; in TEST() argument
/art/test/920-objects/src/art/
DTest920.java90 public MyHash(int h) { in MyHash() argument
91 hash = h; in MyHash()
/art/dt_fd_forward/
DNOTICE4 This file implements interfaces from the file jdwpTransport.h. This
6 jdwpTransport.h. The copyright and license information for the file
7 jdwpTransport.h follows.
/art/test/1900-track-alloc/src/art/
DTest1900.java83 final Holder h = new Holder(); in run() local
87 h.val = doAllocate(100); in run()
96 doDeallocate(h.val); in run()
/art/openjdkjvmti/
DNOTICE4 This file implements interfaces from the file jvmti.h. This implementation
5 is licensed under the same terms as the file jvmti.h. The
6 copyright and license information for the file jvmti.h follows.
/art/openjdkjvm/
DNOTICE4 This file implements interfaces from the file jvm.h. This implementation
5 is licensed under the same terms as the file jvm.h. The
6 copyright and license information for the file jvm.h follows.
/art/libartbase/
DAndroid.bp125 // ART's macros.h depends on libbase's macros.h.
126 // Note: runtime_options.h depends on cmdline. But we don't really want to export this
158 "arch/instruction_set.h",
159 "base/allocator.h",
160 "base/unix_file/fd_file.h",
/art/libdexfile/
DAndroid.bp134 "dex/dex_file.h",
135 "dex/dex_file_layout.h",
136 "dex/dex_instruction.h",
137 "dex/dex_instruction_utils.h",
138 "dex/invoke_type.h",
139 "dex/method_reference.h",
/art/libprofile/
DAndroid.bp69 // ART's macros.h depends on libbase's macros.h.
70 // Note: runtime_options.h depends on cmdline. But we don't really want to export this
/art/test/642-fp-callees/
Dfp_callees.cc39 double h = array[7]; in Java_Main_holdFpTemporaries() local
61 CHECK_EQ(bit_cast<int64_t>(h), bit_cast<int64_t>(temp)); in Java_Main_holdFpTemporaries()
/art/test/027-arithmetic/src/
DMain.java60 long h = 0x88; in shiftTest2() local
63 (e << 24) | (f << 16) | (g << 8) | h); in shiftTest2()
/art/compiler/
DAndroid.bp199 "driver/compiler_options.h",
200 "linker/linker_patch.h",
201 "optimizing/locations.h",
202 "optimizing/optimizing_compiler_stats.h",
204 "utils/arm/constants_arm.h",
205 "utils/mips/assembler_mips.h",
206 "utils/mips64/assembler_mips64.h",

1234