Home
last modified time | relevance | path

Searched refs:weakCompareAndSetAcquire (Results 1 – 25 of 46) sorted by relevance

12

/libcore/luni/src/test/java/libcore/java/util/concurrent/
DAtomicLongTest.java136 assertFalse(val.weakCompareAndSetAcquire(0, -1)); in testWeakCompareAndSetAcquire()
139 do { } while (!val.weakCompareAndSetAcquire(42, 0)); in testWeakCompareAndSetAcquire()
141 do { } while (!val.weakCompareAndSetAcquire(0, 5)); in testWeakCompareAndSetAcquire()
143 do { } while (!val.weakCompareAndSetAcquire(5, -1)); in testWeakCompareAndSetAcquire()
DAtomicIntegerTest.java136 assertFalse(val.weakCompareAndSetAcquire(0, -1)); in testWeakCompareAndSetAcquire()
139 do { } while (!val.weakCompareAndSetAcquire(42, 0)); in testWeakCompareAndSetAcquire()
141 do { } while (!val.weakCompareAndSetAcquire(0, 5)); in testWeakCompareAndSetAcquire()
143 do { } while (!val.weakCompareAndSetAcquire(5, -1)); in testWeakCompareAndSetAcquire()
DAtomicBooleanTest.java159 assertFalse(val.weakCompareAndSetAcquire(expected, newValue)); in testWeakCompareAndSetAcquire()
164 do { } while (!val.weakCompareAndSetAcquire(expected, newValue)); in testWeakCompareAndSetAcquire()
169 do { } while (!val.weakCompareAndSetAcquire(expected, newValue)); in testWeakCompareAndSetAcquire()
174 do { } while (!val.weakCompareAndSetAcquire(expected, newValue)); in testWeakCompareAndSetAcquire()
DAtomicLongArrayTest.java202 assertFalse(arr.weakCompareAndSetAcquire(i, 0, -1)); in testWeakCompareAndSetAcquire()
205 do { } while (!arr.weakCompareAndSetAcquire(i, expectedArray[i], i+1)); in testWeakCompareAndSetAcquire()
210 do { } while (!arr.weakCompareAndSetAcquire(i, expectedArray[i], i*2)); in testWeakCompareAndSetAcquire()
DAtomicIntegerArrayTest.java202 assertFalse(arr.weakCompareAndSetAcquire(i, 0, -1)); in testWeakCompareAndSetAcquire()
205 do { } while (!arr.weakCompareAndSetAcquire(i, expectedArray[i], i+1)); in testWeakCompareAndSetAcquire()
210 do { } while (!arr.weakCompareAndSetAcquire(i, expectedArray[i], i*2)); in testWeakCompareAndSetAcquire()
DAtomicReferenceTest.java279 assertFalse(val.weakCompareAndSetAcquire(Integer.valueOf(0), Integer.valueOf(-1))); in testWeakCompareAndSetAcquire()
285 do { } while (!val.weakCompareAndSetAcquire(currentValue, newValue)); in testWeakCompareAndSetAcquire()
291 do { } while (!val.weakCompareAndSetAcquire(currentValue, newValue)); in testWeakCompareAndSetAcquire()
297 do { } while (!val.weakCompareAndSetAcquire(currentValue, newValue)); in testWeakCompareAndSetAcquire()
/libcore/ojluni/src/main/java/java/util/concurrent/atomic/
DAtomicBoolean.java337 public final boolean weakCompareAndSetAcquire(boolean expectedValue, boolean newValue) { in weakCompareAndSetAcquire() method in AtomicBoolean
338 return VALUE.weakCompareAndSetAcquire(this, in weakCompareAndSetAcquire()
DAtomicLong.java602 public final boolean weakCompareAndSetAcquire(long expectedValue, long newValue) { in weakCompareAndSetAcquire() method in AtomicLong
605 return VALUE.weakCompareAndSetAcquire(this, expectedValue, newValue); in weakCompareAndSetAcquire()
DAtomicInteger.java587 public final boolean weakCompareAndSetAcquire(int expectedValue, int newValue) { in weakCompareAndSetAcquire() method in AtomicInteger
590 return VALUE.weakCompareAndSetAcquire(this, expectedValue, newValue); in weakCompareAndSetAcquire()
DAtomicReference.java422 public final boolean weakCompareAndSetAcquire(V expectedValue, V newValue) { in weakCompareAndSetAcquire() method in AtomicReference
423 return VALUE.weakCompareAndSetAcquire(this, expectedValue, newValue); in weakCompareAndSetAcquire()
DAtomicLongArray.java545 public final boolean weakCompareAndSetAcquire(int i, long expectedValue, long newValue) { in weakCompareAndSetAcquire() method in AtomicLongArray
546 return AA.weakCompareAndSetAcquire(array, i, expectedValue, newValue); in weakCompareAndSetAcquire()
DAtomicIntegerArray.java545 public final boolean weakCompareAndSetAcquire(int i, int expectedValue, int newValue) { in weakCompareAndSetAcquire() method in AtomicIntegerArray
546 return AA.weakCompareAndSetAcquire(array, i, expectedValue, newValue); in weakCompareAndSetAcquire()
DAtomicReferenceArray.java509 public final boolean weakCompareAndSetAcquire(int i, E expectedValue, E newValue) { in weakCompareAndSetAcquire() method in AtomicReferenceArray
510 return AA.weakCompareAndSetAcquire(array, i, expectedValue, newValue); in weakCompareAndSetAcquire()
/libcore/ojluni/src/test/java/lang/invoke/VarHandles/
DVarHandleTestMethodTypeFloat.java411 boolean r = vh.weakCompareAndSetAcquire(null, 1.0f, 1.0f); in testInstanceFieldWrongMethodType()
414 boolean r = vh.weakCompareAndSetAcquire(Void.class, 1.0f, 1.0f); in testInstanceFieldWrongMethodType()
417 boolean r = vh.weakCompareAndSetAcquire(recv, Void.class, 1.0f); in testInstanceFieldWrongMethodType()
420 boolean r = vh.weakCompareAndSetAcquire(recv, 1.0f, Void.class); in testInstanceFieldWrongMethodType()
423 boolean r = vh.weakCompareAndSetAcquire(0, 1.0f, 1.0f); in testInstanceFieldWrongMethodType()
427 boolean r = vh.weakCompareAndSetAcquire(); in testInstanceFieldWrongMethodType()
430 boolean r = vh.weakCompareAndSetAcquire(recv, 1.0f, 1.0f, Void.class); in testInstanceFieldWrongMethodType()
1114 boolean r = vh.weakCompareAndSetAcquire(Void.class, 1.0f); in testStaticFieldWrongMethodType()
1117 boolean r = vh.weakCompareAndSetAcquire(1.0f, Void.class); in testStaticFieldWrongMethodType()
1121 boolean r = vh.weakCompareAndSetAcquire(); in testStaticFieldWrongMethodType()
[all …]
DVarHandleTestMethodTypeDouble.java411 boolean r = vh.weakCompareAndSetAcquire(null, 1.0d, 1.0d); in testInstanceFieldWrongMethodType()
414 boolean r = vh.weakCompareAndSetAcquire(Void.class, 1.0d, 1.0d); in testInstanceFieldWrongMethodType()
417 boolean r = vh.weakCompareAndSetAcquire(recv, Void.class, 1.0d); in testInstanceFieldWrongMethodType()
420 boolean r = vh.weakCompareAndSetAcquire(recv, 1.0d, Void.class); in testInstanceFieldWrongMethodType()
423 boolean r = vh.weakCompareAndSetAcquire(0, 1.0d, 1.0d); in testInstanceFieldWrongMethodType()
427 boolean r = vh.weakCompareAndSetAcquire(); in testInstanceFieldWrongMethodType()
430 boolean r = vh.weakCompareAndSetAcquire(recv, 1.0d, 1.0d, Void.class); in testInstanceFieldWrongMethodType()
1114 boolean r = vh.weakCompareAndSetAcquire(Void.class, 1.0d); in testStaticFieldWrongMethodType()
1117 boolean r = vh.weakCompareAndSetAcquire(1.0d, Void.class); in testStaticFieldWrongMethodType()
1121 boolean r = vh.weakCompareAndSetAcquire(); in testStaticFieldWrongMethodType()
[all …]
DVarHandleTestMethodTypeString.java411 boolean r = vh.weakCompareAndSetAcquire(null, "foo", "foo"); in testInstanceFieldWrongMethodType()
414 boolean r = vh.weakCompareAndSetAcquire(Void.class, "foo", "foo"); in testInstanceFieldWrongMethodType()
417 boolean r = vh.weakCompareAndSetAcquire(recv, Void.class, "foo"); in testInstanceFieldWrongMethodType()
420 boolean r = vh.weakCompareAndSetAcquire(recv, "foo", Void.class); in testInstanceFieldWrongMethodType()
423 boolean r = vh.weakCompareAndSetAcquire(0, "foo", "foo"); in testInstanceFieldWrongMethodType()
427 boolean r = vh.weakCompareAndSetAcquire(); in testInstanceFieldWrongMethodType()
430 boolean r = vh.weakCompareAndSetAcquire(recv, "foo", "foo", Void.class); in testInstanceFieldWrongMethodType()
992 boolean r = vh.weakCompareAndSetAcquire(Void.class, "foo"); in testStaticFieldWrongMethodType()
995 boolean r = vh.weakCompareAndSetAcquire("foo", Void.class); in testStaticFieldWrongMethodType()
999 boolean r = vh.weakCompareAndSetAcquire(); in testStaticFieldWrongMethodType()
[all …]
DVarHandleTestMethodTypeBoolean.java411 boolean r = vh.weakCompareAndSetAcquire(null, true, true); in testInstanceFieldWrongMethodType()
414 boolean r = vh.weakCompareAndSetAcquire(Void.class, true, true); in testInstanceFieldWrongMethodType()
417 boolean r = vh.weakCompareAndSetAcquire(recv, Void.class, true); in testInstanceFieldWrongMethodType()
420 boolean r = vh.weakCompareAndSetAcquire(recv, true, Void.class); in testInstanceFieldWrongMethodType()
423 boolean r = vh.weakCompareAndSetAcquire(0, true, true); in testInstanceFieldWrongMethodType()
427 boolean r = vh.weakCompareAndSetAcquire(); in testInstanceFieldWrongMethodType()
430 boolean r = vh.weakCompareAndSetAcquire(recv, true, true, Void.class); in testInstanceFieldWrongMethodType()
1296 boolean r = vh.weakCompareAndSetAcquire(Void.class, true); in testStaticFieldWrongMethodType()
1299 boolean r = vh.weakCompareAndSetAcquire(true, Void.class); in testStaticFieldWrongMethodType()
1303 boolean r = vh.weakCompareAndSetAcquire(); in testStaticFieldWrongMethodType()
[all …]
DVarHandleTestMethodTypeByte.java411 boolean r = vh.weakCompareAndSetAcquire(null, (byte)0x01, (byte)0x01); in testInstanceFieldWrongMethodType()
414 boolean r = vh.weakCompareAndSetAcquire(Void.class, (byte)0x01, (byte)0x01); in testInstanceFieldWrongMethodType()
417 boolean r = vh.weakCompareAndSetAcquire(recv, Void.class, (byte)0x01); in testInstanceFieldWrongMethodType()
420 boolean r = vh.weakCompareAndSetAcquire(recv, (byte)0x01, Void.class); in testInstanceFieldWrongMethodType()
423 boolean r = vh.weakCompareAndSetAcquire(0, (byte)0x01, (byte)0x01); in testInstanceFieldWrongMethodType()
427 boolean r = vh.weakCompareAndSetAcquire(); in testInstanceFieldWrongMethodType()
430 boolean r = vh.weakCompareAndSetAcquire(recv, (byte)0x01, (byte)0x01, Void.class); in testInstanceFieldWrongMethodType()
1418 boolean r = vh.weakCompareAndSetAcquire(Void.class, (byte)0x01); in testStaticFieldWrongMethodType()
1421 boolean r = vh.weakCompareAndSetAcquire((byte)0x01, Void.class); in testStaticFieldWrongMethodType()
1425 boolean r = vh.weakCompareAndSetAcquire(); in testStaticFieldWrongMethodType()
[all …]
DVarHandleTestMethodTypeChar.java411 boolean r = vh.weakCompareAndSetAcquire(null, '\u0123', '\u0123'); in testInstanceFieldWrongMethodType()
414 boolean r = vh.weakCompareAndSetAcquire(Void.class, '\u0123', '\u0123'); in testInstanceFieldWrongMethodType()
417 boolean r = vh.weakCompareAndSetAcquire(recv, Void.class, '\u0123'); in testInstanceFieldWrongMethodType()
420 boolean r = vh.weakCompareAndSetAcquire(recv, '\u0123', Void.class); in testInstanceFieldWrongMethodType()
423 boolean r = vh.weakCompareAndSetAcquire(0, '\u0123', '\u0123'); in testInstanceFieldWrongMethodType()
427 boolean r = vh.weakCompareAndSetAcquire(); in testInstanceFieldWrongMethodType()
430 boolean r = vh.weakCompareAndSetAcquire(recv, '\u0123', '\u0123', Void.class); in testInstanceFieldWrongMethodType()
1418 boolean r = vh.weakCompareAndSetAcquire(Void.class, '\u0123'); in testStaticFieldWrongMethodType()
1421 boolean r = vh.weakCompareAndSetAcquire('\u0123', Void.class); in testStaticFieldWrongMethodType()
1425 boolean r = vh.weakCompareAndSetAcquire(); in testStaticFieldWrongMethodType()
[all …]
DVarHandleTestMethodTypeShort.java411 boolean r = vh.weakCompareAndSetAcquire(null, (short)0x0123, (short)0x0123); in testInstanceFieldWrongMethodType()
414 boolean r = vh.weakCompareAndSetAcquire(Void.class, (short)0x0123, (short)0x0123); in testInstanceFieldWrongMethodType()
417 boolean r = vh.weakCompareAndSetAcquire(recv, Void.class, (short)0x0123); in testInstanceFieldWrongMethodType()
420 boolean r = vh.weakCompareAndSetAcquire(recv, (short)0x0123, Void.class); in testInstanceFieldWrongMethodType()
423 boolean r = vh.weakCompareAndSetAcquire(0, (short)0x0123, (short)0x0123); in testInstanceFieldWrongMethodType()
427 boolean r = vh.weakCompareAndSetAcquire(); in testInstanceFieldWrongMethodType()
430 boolean r = vh.weakCompareAndSetAcquire(recv, (short)0x0123, (short)0x0123, Void.class); in testInstanceFieldWrongMethodType()
1418 boolean r = vh.weakCompareAndSetAcquire(Void.class, (short)0x0123); in testStaticFieldWrongMethodType()
1421 boolean r = vh.weakCompareAndSetAcquire((short)0x0123, Void.class); in testStaticFieldWrongMethodType()
1425 boolean r = vh.weakCompareAndSetAcquire(); in testStaticFieldWrongMethodType()
[all …]
DVarHandleTestMethodTypeInt.java411 boolean r = vh.weakCompareAndSetAcquire(null, 0x01234567, 0x01234567); in testInstanceFieldWrongMethodType()
414 boolean r = vh.weakCompareAndSetAcquire(Void.class, 0x01234567, 0x01234567); in testInstanceFieldWrongMethodType()
417 boolean r = vh.weakCompareAndSetAcquire(recv, Void.class, 0x01234567); in testInstanceFieldWrongMethodType()
420 boolean r = vh.weakCompareAndSetAcquire(recv, 0x01234567, Void.class); in testInstanceFieldWrongMethodType()
423 boolean r = vh.weakCompareAndSetAcquire(0, 0x01234567, 0x01234567); in testInstanceFieldWrongMethodType()
427 boolean r = vh.weakCompareAndSetAcquire(); in testInstanceFieldWrongMethodType()
430 boolean r = vh.weakCompareAndSetAcquire(recv, 0x01234567, 0x01234567, Void.class); in testInstanceFieldWrongMethodType()
1418 boolean r = vh.weakCompareAndSetAcquire(Void.class, 0x01234567); in testStaticFieldWrongMethodType()
1421 boolean r = vh.weakCompareAndSetAcquire(0x01234567, Void.class); in testStaticFieldWrongMethodType()
1425 boolean r = vh.weakCompareAndSetAcquire(); in testStaticFieldWrongMethodType()
[all …]
DVarHandleTestMethodTypeLong.java411 boolean r = vh.weakCompareAndSetAcquire(null, 0x0123456789ABCDEFL, 0x0123456789ABCDEFL); in testInstanceFieldWrongMethodType()
414 … boolean r = vh.weakCompareAndSetAcquire(Void.class, 0x0123456789ABCDEFL, 0x0123456789ABCDEFL); in testInstanceFieldWrongMethodType()
417 boolean r = vh.weakCompareAndSetAcquire(recv, Void.class, 0x0123456789ABCDEFL); in testInstanceFieldWrongMethodType()
420 boolean r = vh.weakCompareAndSetAcquire(recv, 0x0123456789ABCDEFL, Void.class); in testInstanceFieldWrongMethodType()
423 boolean r = vh.weakCompareAndSetAcquire(0, 0x0123456789ABCDEFL, 0x0123456789ABCDEFL); in testInstanceFieldWrongMethodType()
427 boolean r = vh.weakCompareAndSetAcquire(); in testInstanceFieldWrongMethodType()
430 …boolean r = vh.weakCompareAndSetAcquire(recv, 0x0123456789ABCDEFL, 0x0123456789ABCDEFL, Void.class… in testInstanceFieldWrongMethodType()
1418 boolean r = vh.weakCompareAndSetAcquire(Void.class, 0x0123456789ABCDEFL); in testStaticFieldWrongMethodType()
1421 boolean r = vh.weakCompareAndSetAcquire(0x0123456789ABCDEFL, Void.class); in testStaticFieldWrongMethodType()
1425 boolean r = vh.weakCompareAndSetAcquire(); in testStaticFieldWrongMethodType()
[all …]
DVarHandleMethodReferenceTest.java76 r = vh::weakCompareAndSetAcquire; in testMethodReferences()
DVarHandleTestByteArrayAsDouble.java266 boolean r = vh.weakCompareAndSetAcquire(array, ci, VALUE_1, VALUE_2); in testArrayNPE()
350 boolean r = vh.weakCompareAndSetAcquire(array, ci, VALUE_1, VALUE_2); in testArrayNPE()
477 boolean r = vh.weakCompareAndSetAcquire(array, ci, VALUE_1, VALUE_2); in testArrayUnsupported()
661 boolean r = vh.weakCompareAndSetAcquire(array, ci, VALUE_1, VALUE_2); in testArrayIndexOutOfBounds()
755 boolean r = vh.weakCompareAndSetAcquire(array, ci, VALUE_1, VALUE_2); in testArrayIndexOutOfBounds()
840 boolean r = vh.weakCompareAndSetAcquire(array, ci, VALUE_1, VALUE_2); in testArrayMisalignedAccess()
927 boolean r = vh.weakCompareAndSetAcquire(array, ci, VALUE_1, VALUE_2); in testArrayMisalignedAccess()
1065 success = vh.weakCompareAndSetAcquire(array, i, VALUE_2, VALUE_1); in testArrayReadWrite()
1238 success = vh.weakCompareAndSetAcquire(array, i, VALUE_2, VALUE_1); in testArrayReadWrite()
DVarHandleTestByteArrayAsFloat.java266 boolean r = vh.weakCompareAndSetAcquire(array, ci, VALUE_1, VALUE_2); in testArrayNPE()
350 boolean r = vh.weakCompareAndSetAcquire(array, ci, VALUE_1, VALUE_2); in testArrayNPE()
477 boolean r = vh.weakCompareAndSetAcquire(array, ci, VALUE_1, VALUE_2); in testArrayUnsupported()
661 boolean r = vh.weakCompareAndSetAcquire(array, ci, VALUE_1, VALUE_2); in testArrayIndexOutOfBounds()
755 boolean r = vh.weakCompareAndSetAcquire(array, ci, VALUE_1, VALUE_2); in testArrayIndexOutOfBounds()
840 boolean r = vh.weakCompareAndSetAcquire(array, ci, VALUE_1, VALUE_2); in testArrayMisalignedAccess()
927 boolean r = vh.weakCompareAndSetAcquire(array, ci, VALUE_1, VALUE_2); in testArrayMisalignedAccess()
1065 success = vh.weakCompareAndSetAcquire(array, i, VALUE_2, VALUE_1); in testArrayReadWrite()
1238 success = vh.weakCompareAndSetAcquire(array, i, VALUE_2, VALUE_1); in testArrayReadWrite()

12