Searched refs:value1 (Results 1 - 3 of 3) sorted by relevance

/art/test/410-floats/src/
H A DMain.java103 public static void testArrayOperations(float[] a, int index, float value1, float value2) { argument
104 a[0] = value1;
106 assertEquals(value1 + value2, a[0] + a[1]);
110 a[index] = value1;
112 assertEquals(value1 + value2, a[0] + a[1]);
117 public static void testArrayOperations(double[] a, int index, double value1, double value2) { argument
118 a[0] = value1;
120 assertEquals(value1 + value2, a[0] + a[1]);
124 a[index] = value1;
126 assertEquals(value1
[all...]
/art/runtime/
H A Djni_internal_test.cc1790 #define EXPECT_STATIC_PRIMITIVE_FIELD(expect_eq, type, field_name, sig, value1, value2) \
1794 env_->SetStatic ## type ## Field(c, fid, value1); \
1795 expect_eq(value1, env_->GetStatic ## type ## Field(c, fid)); \
1803 env_->SetStatic ## type ## Field(nullptr, fid, value1); \
1808 env_->SetStatic ## type ## Field(c, nullptr, value1); \
1814 env_->SetStatic ## type ## Field(nullptr, fid, value1); \
1818 env_->SetStatic ## type ## Field(c, nullptr, value1); \
1823 #define EXPECT_PRIMITIVE_FIELD(expect_eq, instance, type, field_name, sig, value1, value2) \
1827 env_->Set ## type ## Field(instance, fid, value1); \
1828 expect_eq(value1, env
[all...]
/art/test/083-compiler-regressions/src/
H A DMain.java9697 int value1 = link1.value;
9699 System.out.println("LVNTests.testNPE1 fails with " + value1 + " and " + value2);
9716 int value1 = link1.value;
9718 System.out.println("LVNTests.testNPE2 fails with " + value1 + " and " + value2);

Completed in 138 milliseconds