Searched refs:vf (Results 1 – 1 of 1) sorted by relevance
/dalvik/dx/tests/141-invoke-polymorphic-varhandles/ |
D | VarHandleDexTest.java | 103 … VarHandle vf = MethodHandles.lookup().findStaticVarHandle(t.getClass(), "fValue", Float.class); in main() local 107 Float f0 = (Float) vf.compareAndExchangeAcquire(t, expectedValue, newValue); in main() 108 vf.compareAndExchangeAcquire(t, expectedValue, newValue); in main() 109 Float f1 = (Float) vf.compareAndExchange(t, expectedValue, newValue); in main() 110 vf.compareAndExchange(t, expectedValue, newValue); in main() 111 Float f2 = (Float) vf.compareAndExchangeRelease(t, expectedValue, newValue); in main() 112 vf.compareAndExchangeRelease(t, expectedValue, newValue); in main() 114 boolean r0 = vf.compareAndSet(t, expectedValue, newValue); in main() 115 vf.compareAndSet(t, expectedValue, newValue); in main() 116 boolean r1 = vf.weakCompareAndSetAcquire(t, expectedValue, newValue); in main() [all …]
|