Searched refs:f1024vh (Results 1 – 1 of 1) sorted by relevance
/aosp12/art/test/160-read-barrier-stress/src/ |
H A D | Main.java | 300 VarHandle f1024vh = in testVarHandleCompareAndSet() local 318 assertEqual(true, f1024vh.compareAndSet(mf, f1024, f4444)); in testVarHandleCompareAndSet() 319 assertEqual(true, f1024vh.compareAndSet(mf, f4444, f1024)); in testVarHandleCompareAndSet() 320 assertEqual(false, f1024vh.compareAndSet(mf, f4444, f1024)); in testVarHandleCompareAndSet() 340 VarHandle f1024vh = in testVarHandleCompareAndExchange() local 358 assertSameObject(f1024, f1024vh.compareAndExchange(mf, f1024, f4444)); // Replaced. in testVarHandleCompareAndExchange() 359 assertSameObject(f4444, f1024vh.compareAndExchange(mf, f4444, f1024)); // Replaced. in testVarHandleCompareAndExchange() 380 VarHandle f1024vh = in testVarHandleGetAndSet() local 398 assertSameObject(f1024, f1024vh.getAndSet(mf, f4444)); // Replaced. in testVarHandleGetAndSet() 399 assertSameObject(f4444, f1024vh.getAndSet(mf, f1024)); // Replaced. in testVarHandleGetAndSet() [all …]
|