Searched refs:offset (Results 251 - 262 of 262) sorted by relevance

<<11

/art/compiler/driver/
H A Dcompiler_driver.cc435 #define CREATE_TRAMPOLINE(type, abi, offset) \
438 type ## _ENTRYPOINT_OFFSET(8, offset)); \
441 type ## _ENTRYPOINT_OFFSET(4, offset)); \
2887 bool CompilerDriver::IsStringInit(uint32_t method_index, const DexFile* dex_file, int32_t* offset) { argument
2890 *offset = inliner->GetOffsetForStringInit(method_index, pointer_size);
/art/runtime/interpreter/mterp/out/
H A Dmterp_x86.S129 * to access other shadow frame fields, we need to use a backwards offset. Define those here.
185 * offset into the code_items_[] array. For effiency, we will "export" the
1085 * Unconditional branch, 8-bit offset.
1087 * The branch distance is a signed code-unit offset, which we need to
1088 * double to get a byte offset.
1100 * Unconditional branch, 16-bit offset.
1102 * The branch distance is a signed code-unit offset, which we need to
1103 * double to get a byte offset.
1115 * Unconditional branch, 32-bit offset.
1117 * The branch distance is a signed code-unit offset, whic
[all...]
H A Dmterp_arm.S111 * to access other shadow frame fields, we need to use a backwards offset. Define those here.
131 * offset into the code_items_[] array. For effiency, we will "export" the
156 * Fetch the next instruction from the specified offset. Advances rPC
194 * Fetch the next instruction from an offset specified by _reg. Updates
200 * In some cases we can pre-double _reg for free, so we require a byte offset
208 * Fetch a half-word code unit from an offset past the current PC. The
222 * Fetch one byte from an offset past the current PC. Pass in the same
1106 * Unconditional branch, 8-bit offset.
1108 * The branch distance is a signed code-unit offset, which we need to
1109 * double to get a byte offset
[all...]
/art/compiler/optimizing/
H A Dnodes.h1614 static uint64_t TypeFlagWithAlias(Primitive::Type type, int offset) { argument
1618 return TypeFlag(Primitive::kPrimInt, offset) |
1619 TypeFlag(Primitive::kPrimFloat, offset);
1622 return TypeFlag(Primitive::kPrimLong, offset) |
1623 TypeFlag(Primitive::kPrimDouble, offset);
1625 return TypeFlag(type, offset);
1630 static uint64_t TypeFlag(Primitive::Type type, int offset) { argument
1636 return one << (type + offset);
3899 // - thread entrypoint offset for kStringInit method if this is a string init invoke.
3900 // Note that there are multiple string init methods, each having its own offset
[all...]
/art/runtime/mirror/
H A Dobject-inl.h199 MemberOffset offset = OFFSET_OF_OBJECT_MEMBER(Object, x_rb_ptr_);
200 uint8_t* raw_addr = reinterpret_cast<uint8_t*>(this) + offset.SizeValue();
1057 // There is no reference offset bitmap. In the non-static case, walk up the class
H A Dobject.h60 // compute an offset for the Set/Get methods defined in Object that can safely access fields.
512 ArtField* FindFieldByOffset(MemberOffset offset) SHARED_REQUIRES(Locks::mutator_lock_);
605 friend struct art::ObjectOffsets; // for verifying offset information
H A Dclass.cc271 // Sanity check that the number of bits set in the reference offset bitmap
935 MemberOffset offset ATTRIBUTE_UNUSED,
/art/runtime/
H A Dclass_linker.cc232 uint32_t start_offset; // The offset from the start of the object.
240 // Sort by gap size, largest first. Secondary sort by starting offset.
780 size_t offset = reinterpret_cast<uint8_t*>(m) - space->Begin(); local
783 contains = contains || methods.Contains(offset);
786 contains = contains || runtime_methods.Contains(offset);
819 auto offset = reinterpret_cast<uint8_t*>(arr) - space->Begin(); local
821 ImageHeader::kSectionDexCacheArrays).Contains(offset)) {
7456 << " class=" << PrettyClass(klass.Get()) << " field=" << PrettyField(field) << " offset="
7470 MemberOffset offset = field->GetOffsetDuringLinking(); local
7472 if (offset
[all...]
H A Dthread.h140 // overflow check is a read of memory at a certain offset below the current SP (4K typically).
184 static void DumpThreadOffset(std::ostream& os, uint32_t offset);
1467 // TODO: move this to more of a global offset table model to avoid per-thread duplication.
/art/test/082-inline-execute/src/
H A DMain.java398 String offset = new String("xxx0123456789yyy");
399 String sub = offset.substring(3, 13);
419 // Compare string with a nonzero offset, in left/right side.
425 Assert.assertFalse(offset.equals(sub));
426 Assert.assertFalse(sub.equals(offset));
/art/runtime/gc/
H A Dheap.h439 MemberOffset offset ATTRIBUTE_UNUSED,
/art/compiler/jni/
H A Djni_compiler_test.cc861 jboolean my_casi(JNIEnv* env, jobject unsafe, jobject obj, jlong offset, jint expected, jint newval) { argument
864 EXPECT_EQ(INT64_C(0x12345678ABCDEF88), offset);

Completed in 550 milliseconds

<<11