Home
last modified time | relevance | path

Searched refs:value_field (Results 1 – 2 of 2) sorted by relevance

/art/compiler/optimizing/
Dintrinsics.cc129 ArtField* value_field = integer_class->FindDeclaredInstanceField(kValueFieldName, "I"); in CheckIntegerCache() local
130 DCHECK(value_field != nullptr); in CheckIntegerCache()
141 if (value_field->GetInt(boot_image_object) != low + i) { in CheckIntegerCache()
202 ArtField* value_field = integer_class->FindDeclaredInstanceField(kValueFieldName, "I"); in ComputeIntegerValueOfLocations() local
203 CHECK(value_field != nullptr); in ComputeIntegerValueOfLocations()
207 CHECK_EQ(value_field->GetInt(current_object), low + i); in ComputeIntegerValueOfLocations()
242 ArtField* value_field = integer_class->FindDeclaredInstanceField(kValueFieldName, "I"); in ComputeIntegerValueOfLocations() local
243 DCHECK(value_field != nullptr); in ComputeIntegerValueOfLocations()
244 int32_t low = value_field->GetInt(low_integer); in ComputeIntegerValueOfLocations()
300 ArtField* value_field = integer_class->FindDeclaredInstanceField(kValueFieldName, "I"); in ComputeIntegerValueOfInfo() local
[all …]
/art/runtime/
Dtransaction_test.cc668 ArtField* value_field = boolean_class->FindDeclaredInstanceField("value", "Z"); in TEST_F() local
669 ASSERT_TRUE(value_field != nullptr); in TEST_F()
670 ASSERT_FALSE(value_field->IsStatic()); in TEST_F()