Lines Matching refs:obj1
110 static int test1(TestClass obj1, TestClass obj2) { in test1() argument
111 obj1.i = 1; in test1()
113 return obj1.i + obj2.j; in test1()
158 TestClass obj1 = TestClass.sTestClassObj; in test3() local
163 obj1.j = 2; in test3()
167 return obj.i + obj1.j + obj2.i + obj2.j; in test3()
231 static int test6(TestClass obj1, TestClass obj2, boolean b) { in test6() argument
232 obj1.i = 1; in test6()
233 obj1.j = 2; in test6()
237 return obj1.j + obj2.j; in test6()
347 static int test12(TestClass obj1, TestClass obj2) { in test12() argument
348 obj1.i = 1; in test12()
351 sum += obj1.i; in test12()
370 static int test13(TestClass obj1, TestClass2 obj2) { in test13() argument
371 obj1.i = 1; in test13()
373 return obj1.i + obj2.i; in test13()
387 static int test14(TestClass obj1, SubTestClass obj2) { in test14() argument
388 obj1.i = 1; in test14()
390 return obj1.i; in test14()
547 TestClass obj1 = new TestClass(); in test22() local
548 obj1.i = 2; // This store can be eliminated since obj1 is never stored into inside a loop. in test22()
556 sum += obj1.i + obj3.i; in test22()
838 private static int testStoreStore5(TestClass2 obj1, TestClass2 obj2) { in testStoreStore5() argument
839 obj1.i = 71; // This store is needed since obj2.i may load from it. in testStoreStore5()
841 obj1.i = 72; in testStoreStore5()
855 private static int testStoreStore6(TestClass2 obj1, TestClass2 obj2) { in testStoreStore6() argument
856 obj1.i = 81; // This store is not needed since obj2.j cannot load from it. in testStoreStore6()
858 obj1.i = 82; in testStoreStore6()
1162 TestClass obj1 = new TestClass(); in main() local
1164 obj1.next = obj2; in main()
1165 assertIntEquals(test3(obj1), 10); in main()
1174 obj1 = new TestClass(); in main()
1176 obj1.next = obj2; in main()