HomeSort by relevance Sort by last modified time
    Searched refs:Uint32Value (Results 1 - 25 of 62) sorted by null

1 2 3

  /art/runtime/arch/
code_offset.h 40 ALWAYS_INLINE uint32_t Uint32Value(InstructionSet isa = kRuntimeISA) const {
87 return os << offset.Uint32Value();
  /art/runtime/
art_field.cc 39 DCHECK_ALIGNED(num_bytes.Uint32Value(), 8);
43 offset_ = num_bytes.Uint32Value();
offsets.h 34 uint32_t Uint32Value() const {
class_linker_test.cc 363 MemberOffset end_ref_offset(start_ref_offset.Uint32Value() +
373 ASSERT_EQ(current_ref_offset.Uint32Value(), field->GetOffset().Uint32Value());
374 if (current_ref_offset.Uint32Value() == end_ref_offset.Uint32Value()) {
379 current_ref_offset = MemberOffset(current_ref_offset.Uint32Value() +
383 if (field->GetOffset().Uint32Value() < end_ref_offset.Uint32Value()) {
385 ASSERT_LT(field->GetOffset().Uint32Value(), start_ref_offset.Uint32Value());
    [all...]
transaction.cc 380 auto it = field_values_.find(offset.Uint32Value());
386 field_values_.emplace(offset.Uint32Value(), std::move(field_value));
395 if (field_offset.Uint32Value() == mirror::Class::ClassOffset().Uint32Value()) {
400 field_offset.Uint32Value() == mirror::Array::LengthOffset().Uint32Value()) {
art_field-inl.h 372 if (field.GetOffset().Uint32Value() == field_offset) {
376 const uint32_t offset = field.GetOffset().Uint32Value();
art_method.h 775 const auto addr = reinterpret_cast<uintptr_t>(this) + offset.Uint32Value();
787 const auto addr = reinterpret_cast<uintptr_t>(this) + offset.Uint32Value();
common_throws.cc 434 uint32_t monitor_offset = mirror::Object::MonitorOffset().Uint32Value();
486 return (addr == 0) || (addr == field->GetOffset().Uint32Value());
532 return (addr == 0u) || (addr == mirror::Array::LengthOffset().Uint32Value());
class_linker.cc 335 if (!IsAligned<n>(field_offset->Uint32Value())) {
337 *field_offset = MemberOffset(RoundUp(field_offset->Uint32Value(), n));
338 AddFieldGap(old_offset.Uint32Value(), field_offset->Uint32Value(), gaps);
351 DCHECK_ALIGNED(field_offset->Uint32Value(), n);
353 *field_offset = MemberOffset(field_offset->Uint32Value() + n);
    [all...]
  /art/compiler/jni/quick/
jni_compiler.cc 260 CHECK_LT(handle_scope_offset.Uint32Value(), frame_size);
283 CHECK_LT(handle_scope_offset.Uint32Value(), frame_size);
284 CHECK_NE(handle_scope_offset.Uint32Value(),
285 main_jni_conv->SavedLocalReferenceCookieOffset().Uint32Value());
534 return_save_location.Uint32Value() % 8 != 0) {
536 return_save_location = FrameOffset(return_save_location.Uint32Value()
541 CHECK_LT(return_save_location.Uint32Value(), frame_size + main_out_arg_size);
    [all...]
  /art/compiler/optimizing/
instruction_simplifier_arm.cc 175 size_t data_offset = mirror::Array::DataOffset(access_size).Uint32Value();
instruction_simplifier_arm64.cc 154 size_t data_offset = mirror::Array::DataOffset(access_size).Uint32Value();
instruction_simplifier_shared.cc 362 Primitive::ComponentSize(packed_type)).Uint32Value();
373 Primitive::ComponentSize(another_packed_type)).Uint32Value();
stack_map_test.cc     [all...]
code_generator.cc 155 ? mirror::String::CountOffset().Uint32Value()
156 : mirror::Array::LengthOffset().Uint32Value();
162 ? mirror::String::ValueOffset().Uint32Value()
163 : mirror::Array::DataOffset(Primitive::ComponentSize(array_get->GetType())).Uint32Value();
    [all...]
intrinsics_x86.cc 100 uint32_t offset = mirror::Array::DataOffset(element_size).Uint32Value();
    [all...]
code_generator_mips64.cc     [all...]
intrinsics_x86_64.cc     [all...]
code_generator_vector_arm64.cc     [all...]
  /art/runtime/mirror/
object.cc 273 return IsClass() ? ArtField::FindStaticFieldWithOffset(AsClass(), offset.Uint32Value())
274 : ArtField::FindInstanceFieldWithOffset(GetClass(), offset.Uint32Value());
array.h 213 Array::DataOffset(static_cast<size_t>(ptr_size)).Uint32Value() +
  /art/compiler/debug/
elf_debug_info_writer.h 302 uint32_t data_offset = mirror::Array::DataOffset(component_size).Uint32Value();
303 uint32_t length_offset = mirror::Array::LengthOffset().Uint32Value();
346 DCHECK_EQ(type->ClassOffset().Uint32Value(), 0u);
356 expr.WriteOpPlusUconst(mirror::Class::MethodsOffset().Uint32Value());
379 info_.WriteUdata(DW_AT_data_member_location, field->GetOffset().Uint32Value());
401 mirror::String::ValueOffset().Uint32Value());
  /art/compiler/jni/quick/x86/
calling_convention_x86.cc 160 int32_t spill_offset = CurrentParamStackOffset().Uint32Value();
  /art/compiler/jni/quick/x86_64/
calling_convention_x86_64.cc 164 int32_t spill_offset = CurrentParamStackOffset().Uint32Value();
  /art/runtime/gc/
verification.cc 100 oss << " field_offset=" << offset.Uint32Value();

Completed in 588 milliseconds

1 2 3