Home
last modified time | relevance | path

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

/dalvik/dx/tests/141-invoke-polymorphic-varhandles/
DVarHandleDexTest.java36 boolean expectedValue = false; in main()
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 …]