Home
last modified time | relevance | path

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

/aosp12/art/test/160-read-barrier-stress/src/
H A DMain.java41 Object f1024 = manyFields.testField1024; in testFieldReads()
54 assertSameObject(f1024, mf.testField1024); in testFieldReads()
185 Object f1024 = manyFields.testField1024; in testUnsafeGet()
222 Object f1024 = manyFields.testField1024; in testUnsafeCas()
292 Object f1024 = manyFields.testField1024; in testVarHandleCompareAndSet()
331 Object f1024 = manyFields.testField1024; in testVarHandleCompareAndExchange()
371 Object f1024 = manyFields.testField1024; in testVarHandleGetAndSet()
410 manyFields.testField1024 = new Object(); in testReferenceRefersTo()
414 WeakReference<Object> f1024 = new WeakReference<Object>(manyFields.testField1024); in testReferenceRefersTo()
427 assertEqual(true, f1024.refersTo(mf.testField1024)); in testReferenceRefersTo()
H A DManyFieldsBase1.java42 public Object testField1024 = new Integer(1024); field in ManyFieldsBase1