Home
last modified time | relevance | path

Searched refs:h (Results 51 – 75 of 98) sorted by relevance

1234

/art/tools/bisection_search/
DREADME.md37 bisection_search.py [-h] [-cp CLASSPATH] [--class CLASSNAME] [--lib LIB]
49 -h, --help show this help message and exit
/art/test/957-methodhandle-transforms/
Dexpected.txt36 a: a, b:1, c: 2, d: 3, e: 4, f:5, g: 6.0, h: 7.0
37 a: a, b:1, c: 2, d: 3, e: 4, f:5, g: 6.0, h: 7.0
/art/test/580-fp16/src-art/
DMain.java55 for (short h = Short.MIN_VALUE; h < Short.MAX_VALUE; h++) { in testHalfToFloatToHalfConversions()
56 if (FP16.isNaN(h)) { in testHalfToFloatToHalfConversions()
60 assertEquals(h, FP16.toHalf(FP16.toFloat(h))); in testHalfToFloatToHalfConversions()
/art/tools/jvmti-agents/titrace/
DAndroid.bp44 "libdexfile_all_headers", // for dex_instruction_list.h only
/art/runtime/
Dcommon_dex_operations.h107 HandleWrapperObjPtr<mirror::Object> h(hs.NewHandleWrapper(&obj)); in DoFieldGetCommon()
168 HandleWrapperObjPtr<mirror::Object> h(hs.NewHandleWrapper(&obj)); in DoFieldPutCommon()
Dhandle_scope-inl.h130 MutableHandle<MirrorType> h(GetHandle<MirrorType>(pos_)); in NewHandle()
132 return h; in NewHandle()
Delf_file.cc733 unsigned h = 0, g; in elfhash() local
736 h = (h << 4) + *name++; in elfhash()
737 g = h & 0xf0000000; in elfhash()
738 h ^= g; in elfhash()
739 h ^= g >> 24; in elfhash()
741 return h; in elfhash()
Dcommon_runtime_test.cc347 MutableHandle<mirror::Object> h(handle_scope->NewHandle<mirror::Object>( in FillHeap() local
349 if (self->IsExceptionPending() || h == nullptr) { in FillHeap()
/art/test/924-threads/src/art/
DTest924.java112 final Holder h = new Holder(); in doStateTests() local
141 while (!h.flag) { in doStateTests()
205 h.flag = true; in doStateTests()
/art/tools/cpp-define-generator/
Dlockword.def18 #include "lock_word.h"
Dmirror_array.def18 #include "mirror/array.h"
Dmirror_class.def18 #include "mirror/class.h"
/art/perfetto_hprof/
DAndroid.bp28 "perfetto_hprof.h",
/art/tools/jfuzz/
DREADME.md17 [-i if-nest] [-n loop-nest] [-v] [-h]
34 -h : prints help and exits
/art/test/800-smali/smali/
DsameFieldNames.smali31 .field static public h:C
/art/runtime/entrypoints/quick/
Dquick_field_entrypoints.cc43 HandleWrapper<mirror::Object> h(hs.NewHandleWrapper(obj)); in FindInstanceField() local
45 if (LIKELY(field != nullptr) && UNLIKELY(h == nullptr)) { in FindInstanceField()
/art/runtime/gc/allocator/
Drosalloc.cc376 FreePageRun* h = *it; in FreePages() local
377 DCHECK_EQ(h->ByteSize(this) % kPageSize, static_cast<size_t>(0)); in FreePages()
380 … << std::hex << reinterpret_cast<uintptr_t>(h) << " [" << std::dec << ToPageMapIndex(h) << "] -0x" in FreePages()
381 << std::hex << reinterpret_cast<uintptr_t>(h->End(this)) << " [" << std::dec in FreePages()
382 << (h->End(this) == End() ? page_map_size_ : ToPageMapIndex(h->End(this))) << "]"; in FreePages()
384 if (fpr->End(this) == h->Begin()) { in FreePages()
390 h->magic_num_ = 0; in FreePages()
395 << reinterpret_cast<intptr_t>(h) in FreePages()
398 fpr->SetByteSize(this, fpr->ByteSize(this) + h->ByteSize(this)); in FreePages()
/art/test/953-invoke-polymorphic-compiler/src/
DMain.java101 int e, int f, int g, int h, in Min2Print26() argument
107 int[] values = new int[] { a, b, c, d, e, f, g, h, i, j, k, l, m, in Min2Print26()
/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/dex2oat/
DAndroid.bp84 "dex/dex_to_dex_compiler.h",
85 "linker/image_writer.h",
/art/tools/
Ddex2oat_wrapper28 while [ -h "$PROG_NAME" ]; do
/art/test/956-methodhandles/src/
DMain.java584 H h = new H(); in testUnreflects() local
585 h.chatter(); in testUnreflects()
587 MethodHandles.Lookup lookupInH = h.getLookup(); in testUnreflects()
589 lookupInH.unreflectSpecial(methodInH, H.class).invoke(h); in testUnreflects()
592 lookupInH.unreflect(methodInChatty).invoke(h); in testUnreflects()
593 lookupInH.in(H.class).unreflectSpecial(methodInChatty, H.class).invoke(h); in testUnreflects()
594 lookupInH.unreflectSpecial(methodInChatty, H.class).bindTo(h).invokeWithArguments(); in testUnreflects()
/art/runtime/interpreter/mterp/
DREADME.txt45 The file "art/runtime/asm_support.h" has some definitions for constant
/art/runtime/arch/
Dstub_test.cc857 Handle<mirror::Object> h(hsp->NewHandle<mirror::Object>( in TEST_F() local
859 if (self->IsExceptionPending() || h == nullptr) { in TEST_F()
870 handles.push_back(h); in TEST_F()
877 Handle<mirror::Object> h = hsp->NewHandle(c->AllocObject(soa.Self())); in TEST_F() local
878 if (!self->IsExceptionPending() && h != nullptr) { in TEST_F()
879 handles.push_back(h); in TEST_F()
/art/test/957-methodhandle-transforms/src/
DMain.java797 short d, int e, long f, float g, double h) { in permuteArguments_callee() argument
804 + ", " + d + ", " + e + ", " + f + ", " + g + ", " + h); in permuteArguments_callee()
1054 short d, int e, long f, float g, double h) { in spreadByte() argument
1057 ", h: " + h); in spreadByte()

1234