Searched refs:vb (Results 1 – 1 of 1) sorted by relevance
/dalvik/dx/tests/141-invoke-polymorphic-varhandles/ |
D | VarHandleDexTest.java | 34 … VarHandle vb = MethodHandles.lookup().findStaticVarHandle(t.getClass(), "bsValue", boolean.class); in main() local 38 boolean b0 = (boolean) vb.compareAndExchangeAcquire(t, expectedValue, newValue); in main() 39 vb.compareAndExchangeAcquire(t, expectedValue, newValue); in main() 40 boolean b1 = (boolean) vb.compareAndExchange(t, expectedValue, newValue); in main() 41 vb.compareAndExchange(t, expectedValue, newValue); in main() 42 boolean b2 = (boolean) vb.compareAndExchangeRelease(t, expectedValue, newValue); in main() 43 vb.compareAndExchangeRelease(t, expectedValue, newValue); in main() 45 boolean r0 = vb.compareAndSet(t, expectedValue, newValue); in main() 46 vb.compareAndSet(t, expectedValue, newValue); in main() 47 boolean r1 = vb.weakCompareAndSetAcquire(t, expectedValue, newValue); in main() [all …]
|