/libcore/luni/src/test/java/libcore/java/util/concurrent/ |
D | AtomicLongTest.java | 136 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()
|
D | AtomicIntegerTest.java | 136 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()
|
D | AtomicBooleanTest.java | 159 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()
|
D | AtomicLongArrayTest.java | 202 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()
|
D | AtomicIntegerArrayTest.java | 202 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()
|
D | AtomicReferenceTest.java | 279 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/ |
D | AtomicBoolean.java | 337 public final boolean weakCompareAndSetAcquire(boolean expectedValue, boolean newValue) { in weakCompareAndSetAcquire() method in AtomicBoolean 338 return VALUE.weakCompareAndSetAcquire(this, in weakCompareAndSetAcquire()
|
D | AtomicLong.java | 602 public final boolean weakCompareAndSetAcquire(long expectedValue, long newValue) { in weakCompareAndSetAcquire() method in AtomicLong 605 return VALUE.weakCompareAndSetAcquire(this, expectedValue, newValue); in weakCompareAndSetAcquire()
|
D | AtomicInteger.java | 587 public final boolean weakCompareAndSetAcquire(int expectedValue, int newValue) { in weakCompareAndSetAcquire() method in AtomicInteger 590 return VALUE.weakCompareAndSetAcquire(this, expectedValue, newValue); in weakCompareAndSetAcquire()
|
D | AtomicReference.java | 422 public final boolean weakCompareAndSetAcquire(V expectedValue, V newValue) { in weakCompareAndSetAcquire() method in AtomicReference 423 return VALUE.weakCompareAndSetAcquire(this, expectedValue, newValue); in weakCompareAndSetAcquire()
|
D | AtomicLongArray.java | 545 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()
|
D | AtomicIntegerArray.java | 545 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()
|
D | AtomicReferenceArray.java | 509 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/ |
D | VarHandleTestMethodTypeFloat.java | 411 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 …]
|
D | VarHandleTestMethodTypeDouble.java | 411 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 …]
|
D | VarHandleTestMethodTypeString.java | 411 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 …]
|
D | VarHandleTestMethodTypeBoolean.java | 411 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 …]
|
D | VarHandleTestMethodTypeByte.java | 411 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 …]
|
D | VarHandleTestMethodTypeChar.java | 411 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 …]
|
D | VarHandleTestMethodTypeShort.java | 411 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 …]
|
D | VarHandleTestMethodTypeInt.java | 411 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 …]
|
D | VarHandleTestMethodTypeLong.java | 411 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 …]
|
D | VarHandleMethodReferenceTest.java | 76 r = vh::weakCompareAndSetAcquire; in testMethodReferences()
|
D | VarHandleTestByteArrayAsDouble.java | 266 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()
|
D | VarHandleTestByteArrayAsFloat.java | 266 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()
|