Home
last modified time | relevance | path

Searched refs:GetInt (Results 1 – 19 of 19) sorted by relevance

/art/compiler/optimizing/
Dintrinsics.cc97 return field->GetInt(cache_class); in GetIntegerCacheField()
140 if (value_field->GetInt(boot_image_object) != low + i) { in CheckIntegerCache()
194 CHECK_EQ(value_field->GetInt(current_object), low + i); in ComputeIntegerValueOfLocations()
234 int32_t low = value_field->GetInt(low_integer); in ComputeIntegerValueOfLocations()
336 info.low = value_field->GetInt(low_integer); in ComputeIntegerValueOfInfo()
/art/test/1912-get-set-local-primitive/
Dexpected.txt1 Running public static void art.Test1912.IntMethod(java.lang.Runnable) with "GetInt" on remote threa…
2 "GetInt" on public static void art.Test1912.IntMethod(java.lang.Runnable) got value: 42
34 Running public static void art.Test1912.LongMethod(java.lang.Runnable) with "GetInt" on remote thre…
35 "GetInt" on public static void art.Test1912.LongMethod(java.lang.Runnable) failed due to JVMTI_ERRO…
67 Running public static void art.Test1912.FloatMethod(java.lang.Runnable) with "GetInt" on remote thr…
68 "GetInt" on public static void art.Test1912.FloatMethod(java.lang.Runnable) failed due to JVMTI_ERR…
100 Running public static void art.Test1912.DoubleMethod(java.lang.Runnable) with "GetInt" on remote th…
101 "GetInt" on public static void art.Test1912.DoubleMethod(java.lang.Runnable) failed due to JVMTI_ER…
133 Running public static void art.Test1912.ObjectMethod(java.lang.Runnable) with "GetInt" on remote th…
134 "GetInt" on public static void art.Test1912.ObjectMethod(java.lang.Runnable) failed due to JVMTI_ER…
[all …]
/art/dexlayout/
Ddex_verify.cc603 if (orig->GetInt() != output->GetInt()) { in VerifyEncodedValue()
606 orig->GetInt(), in VerifyEncodedValue()
607 output->GetInt()); in VerifyEncodedValue()
623 if (orig->GetInt() != output->GetInt()) { in VerifyEncodedValue()
627 orig->GetInt(), in VerifyEncodedValue()
628 output->GetInt()); in VerifyEncodedValue()
Ddex_writer.cc133 length = EncodeIntValue(encoded_value->GetInt(), buffer); in WriteEncodedValue()
Ddex_ir.h793 int32_t GetInt() const { return u_.int_val_; } in GetInt() function
Ddexlayout.cc517 fprintf(out_file_, "%" PRId32, data->GetInt()); in DumpEncodedValue()
/art/test/1965-get-set-local-primitive-no-tables/
Dexpected.txt1 …tMethod(java.util.function.IntConsumer,java.util.function.Consumer) with "GetInt" on remote thread.
2 "GetInt" on public static void art_test.TestCases1965.IntMethod(java.util.function.IntConsumer,java…
34 …gMethod(java.util.function.IntConsumer,java.util.function.Consumer) with "GetInt" on remote thread.
35 "GetInt" on public static void art_test.TestCases1965.LongMethod(java.util.function.IntConsumer,jav…
67 …tMethod(java.util.function.IntConsumer,java.util.function.Consumer) with "GetInt" on remote thread.
68 "GetInt" on public static void art_test.TestCases1965.FloatMethod(java.util.function.IntConsumer,ja…
100 …eMethod(java.util.function.IntConsumer,java.util.function.Consumer) with "GetInt" on remote thread.
101 "GetInt" on public static void art_test.TestCases1965.DoubleMethod(java.util.function.IntConsumer,j…
133 …tMethod(java.util.function.IntConsumer,java.util.function.Consumer) with "GetInt" on remote thread.
134 "GetInt" on public static void art_test.TestCases1965.ObjectMethod(java.util.function.IntConsumer,j…
[all …]
/art/runtime/
Dreflection.cc313 DO_FIRST_ARG("Ljava/lang/Integer;", GetInt, Append) in BuildArgArrayFromObjectArray()
321 DO_ARG("Ljava/lang/Integer;", GetInt, AppendWide) in BuildArgArrayFromObjectArray()
330 DO_ARG("Ljava/lang/Integer;", GetInt, AppendFloat) in BuildArgArrayFromObjectArray()
340 DO_ARG("Ljava/lang/Integer;", GetInt, AppendDouble) in BuildArgArrayFromObjectArray()
951 boxed_value.SetI(primitive_field->GetInt(o)); in UnboxPrimitive()
Dcommon_dex_operations.h137 result->SetI(field->GetInt(obj)); in DoFieldGetCommon()
Dtransaction_test.cc207 ASSERT_EQ(intField->GetInt(h_klass.Get()), 0); in TEST_F()
256 EXPECT_EQ(intField->GetInt(h_klass.Get()), 0); in TEST_F()
307 ASSERT_EQ(intField->GetInt(h_instance.Get()), 0); in TEST_F()
356 EXPECT_EQ(intField->GetInt(h_instance.Get()), 0); in TEST_F()
Dart_field.h132 int32_t GetInt(ObjPtr<mirror::Object> object) REQUIRES_SHARED(Locks::mutator_lock_);
Dart_field-inl.h204 inline int32_t ArtField::GetInt(ObjPtr<mirror::Object> object) { in GetInt() function
Dclass_linker_test.cc1204 EXPECT_EQ(2000000000, s4->GetInt(statics.Get())); in TEST_F()
1235 EXPECT_EQ(2000000001, s4->GetInt(statics.Get())); in TEST_F()
Doat_file_assistant_test.cc1280 EXPECT_EQ(field.first, art_field->GetInt(dexfile.Get())); in TEST_F()
Dthread.cc626 self->SetNativePriority(priorityField->GetInt(self->tlsPtr_.opeer)); in CreateCallback()
1830 ->GetInt(thread->tlsPtr_.opeer); in DumpState()
/art/openjdkjvmti/
Dti_threadgroup.cc145 info_ptr->max_priority = static_cast<jint>(prio_field->GetInt(obj.Get())); in GetThreadGroupInfo()
Dti_thread.cc347 info_ptr->priority = static_cast<jint>(f->GetInt(peer)); in GetThreadInfo()
Dti_heap.cc592 value.i = field.GetInt(src); in ReportPrimitiveFieldCallback()
/art/runtime/arch/
Dstub_test.cc1354 int32_t res = f->GetInt(obj->Get()); in GetSet32Instance()