Home
last modified time | relevance | path

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

12

/art/test/484-checker-register-hints/src/
DMain.java42 int h = live4; in test1() local
44 array[2] = e + i + h; in test1()
45 array[3] = f + i + h; in test1()
46 array[4] = g + i + h; in test1()
47 array[0] = h; in test1()
48 array[1] = i + h; in test1()
76 int h = live4; in test2() local
78 array[2] = e + i + h; in test2()
79 array[3] = f + i + h; in test2()
80 array[4] = g + i + h; in test2()
[all …]
/art/runtime/
DAndroid.mk304 arch/instruction_set.h \
305 base/allocator.h \
306 base/mutex.h \
307 debugger.h \
308 base/unix_file/fd_file.h \
309 dex_file.h \
310 dex_instruction.h \
311 dex_instruction_utils.h \
312 gc_root.h \
313 gc/allocator/rosalloc.h \
[all …]
Dhandle_scope-inl.h92 MutableHandle<T> h(GetHandle<T>(pos_)); in NewHandle()
94 return h; in NewHandle()
100 MutableHandle<T> h(GetHandle<T>(pos_)); in NewHandleWrapper()
102 return HandleWrapper<T>(object, h); in NewHandleWrapper()
Dmonitor_test.cc77 MutableHandle<mirror::Object> h((*hsp)->NewHandle<mirror::Object>( in FillHeap() local
79 if (self->IsExceptionPending() || h.Get() == nullptr) { in FillHeap()
90 handles->push_back(h); in FillHeap()
96 MutableHandle<mirror::Object> h = (*hsp)->NewHandle<mirror::Object>(c->AllocObject(self)); in FillHeap() local
97 if (!self->IsExceptionPending() && h.Get() != nullptr) { in FillHeap()
98 handles->push_back(h); in FillHeap()
Delf_file.cc792 unsigned h = 0, g; in elfhash() local
795 h = (h << 4) + *name++; in elfhash()
796 g = h & 0xf0000000; in elfhash()
797 h ^= g; in elfhash()
798 h ^= g >> 24; in elfhash()
800 return h; in elfhash()
/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/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 = computeDouble(); in main()
61 System.out.println(a + b + c + d + e + f + g + h + i + j); in main()
/art/compiler/
DAndroid.mk169 dex/quick/arm/arm_lir.h \
170 dex/quick/arm64/arm64_lir.h \
171 dex/quick/mips/mips_lir.h \
172 dex/quick/resource_mask.h \
173 dex/compiler_enums.h \
174 dex/global_value_numbering.h \
175 dex/pass_me.h \
176 driver/compiler_driver.h \
177 driver/compiler_options.h \
178 image_writer.h \
[all …]
Delf_builder.h477 unsigned h = 0, g; in elfhash() local
480 h = (h << 4) + *name++; in elfhash()
481 g = h & 0xf0000000; in elfhash()
482 h ^= g; in elfhash()
483 h ^= g >> 24; in elfhash()
485 return h; in elfhash()
/art/runtime/gc/collector/
Dconcurrent_copying.h72 size_t h = head_.LoadSequentiallyConsistent(); in Enqueue() local
73 if (t + size_ == h) { in Enqueue()
86 size_t h = head_.LoadRelaxed(); in EnqueueThreadUnsafe() local
87 if (t + size_ == h) { in EnqueueThreadUnsafe()
98 size_t h = head_.LoadRelaxed(); in Dequeue() local
100 if (h == t) { in Dequeue()
104 Atomic<mirror::Object*>* slot = GetSlotAddr(h); in Dequeue()
111 head_.StoreSequentiallyConsistent(h + 1); in Dequeue()
116 size_t h = head_.LoadSequentiallyConsistent(); in IsEmpty() local
118 return h == t; in IsEmpty()
/art/test/412-new-array/src/
DMain.java57 boolean[] h = new boolean[8]; in $opt$TestAllocations()
58 assertEquals(8, h.length); in $opt$TestAllocations()
102 boolean[] h = {true, false}; in $opt$TestWithInitializations()
103 assertEquals(2, h.length); in $opt$TestWithInitializations()
104 assertEquals(true, h[0]); in $opt$TestWithInitializations()
105 assertEquals(false, h[1]); in $opt$TestWithInitializations()
/art/test/027-arithmetic/src/
DMain.java60 long h = 0x88; in shiftTest2() local
63 (e << 24) | (f << 16) | (g << 8) | h); in shiftTest2()
/art/test/450-checker-types/src/
DMain.java33 public String h() { in h() method in SubclassA
93 return ((SubclassA)s).h(); in testClassKeep()
/art/test/067-preemptive-unpark/src/
DMain.java73 int h = 0; in clearStack() local
/art/build/
DAndroid.cpplint.mk21 … -name "*$(ART_CPP_EXTENSION)" | grep -v art/compiler/llvm/generated/ | grep -v art/runtime/elf\.h)
/art/runtime/gc/allocator/
Drosalloc.cc362 FreePageRun* h = *it; in FreePages() local
363 DCHECK_EQ(h->ByteSize(this) % kPageSize, static_cast<size_t>(0)); in FreePages()
366 … << std::hex << reinterpret_cast<uintptr_t>(h) << " [" << std::dec << ToPageMapIndex(h) << "] -0x" in FreePages()
367 << std::hex << reinterpret_cast<uintptr_t>(h->End(this)) << " [" << std::dec in FreePages()
368 … << (h->End(this) == End() ? page_map_size_ : ToPageMapIndex(h->End(this))) << "]"; in FreePages()
370 if (fpr->End(this) == h->Begin()) { in FreePages()
376 h->magic_num_ = 0; in FreePages()
381 << reinterpret_cast<intptr_t>(h) in FreePages()
384 fpr->SetByteSize(this, fpr->ByteSize(this) + h->ByteSize(this)); in FreePages()
/art/test/800-smali/smali/
DsameFieldNames.smali31 .field static public h:C
/art/tools/
Dart25 while [ -h "$file" ]; do
/art/test/003-omnibus-opcodes/src/
DIntMath.java61 long h = 0x88; in shiftTest2() local
64 (e << 24) | (f << 16) | (g << 8) | h); in shiftTest2()
/art/
DNOTICE193 For art/runtime/elf.h derived from external/llvm/include/llvm/Support/ELF.h
264 md5 contributions llvm/lib/Support/MD5.cpp llvm/include/llvm/Support/MD5.h
/art/runtime/arch/
Dstub_test.cc1344 Handle<mirror::Object> h(hsp->NewHandle<mirror::Object>( in TEST_F() local
1346 if (self->IsExceptionPending() || h.Get() == nullptr) { in TEST_F()
1357 handles.push_back(h); in TEST_F()
1364 Handle<mirror::Object> h = hsp->NewHandle(c->AllocObject(soa.Self())); in TEST_F() local
1365 if (!self->IsExceptionPending() && h.Get() != nullptr) { in TEST_F()
1366 handles.push_back(h); in TEST_F()
/art/test/107-int-math2/src/
DMain.java249 long h = 0x88; in shiftTest2() local
252 (e << 24) | (f << 16) | (g << 8) | h); in shiftTest2()
/art/cmdline/
DREADME.md77 The 'Define' method takes one or more aliases for the argument. Common examples might be `{"-h",
78 "--help"}` where both `--help` and `-h` are aliases for the same argument.

12