/libcore/ojluni/src/test/java/lang/invoke/VarHandles/ |
D | VarHandleMethodReferenceTest.java | 93 r = vh::getAndBitwiseXorRelease; in testMethodReferences()
|
D | VarHandleTestMethodTypeBoolean.java | 890 boolean x = (boolean) vh.getAndBitwiseXorRelease(null, true); in testInstanceFieldWrongMethodType() 1633 boolean x = (boolean) vh.getAndBitwiseXorRelease(Void.class); in testStaticFieldWrongMethodType() 1637 Void r = (Void) vh.getAndBitwiseXorRelease(true); in testStaticFieldWrongMethodType() 1640 int x = (int) vh.getAndBitwiseXorRelease(true); in testStaticFieldWrongMethodType() 1644 boolean x = (boolean) vh.getAndBitwiseXorRelease(); in testStaticFieldWrongMethodType() 1647 boolean x = (boolean) vh.getAndBitwiseXorRelease(true, Void.class); in testStaticFieldWrongMethodType() 2639 boolean x = (boolean) vh.getAndBitwiseXorRelease(null, 0, true); in testArrayWrongMethodType() 2642 boolean x = (boolean) vh.getAndBitwiseXorRelease(Void.class, 0, true); in testArrayWrongMethodType() 2645 boolean x = (boolean) vh.getAndBitwiseXorRelease(array, 0, Void.class); in testArrayWrongMethodType() 2648 boolean x = (boolean) vh.getAndBitwiseXorRelease(0, 0, true); in testArrayWrongMethodType() [all …]
|
D | VarHandleTestMethodTypeLong.java | 976 long x = (long) vh.getAndBitwiseXorRelease(null, 0x0123456789ABCDEFL); in testInstanceFieldWrongMethodType() 1816 long x = (long) vh.getAndBitwiseXorRelease(Void.class); in testStaticFieldWrongMethodType() 1820 Void r = (Void) vh.getAndBitwiseXorRelease(0x0123456789ABCDEFL); in testStaticFieldWrongMethodType() 1823 boolean x = (boolean) vh.getAndBitwiseXorRelease(0x0123456789ABCDEFL); in testStaticFieldWrongMethodType() 1827 long x = (long) vh.getAndBitwiseXorRelease(); in testStaticFieldWrongMethodType() 1830 long x = (long) vh.getAndBitwiseXorRelease(0x0123456789ABCDEFL, Void.class); in testStaticFieldWrongMethodType() 2944 long x = (long) vh.getAndBitwiseXorRelease(null, 0, 0x0123456789ABCDEFL); in testArrayWrongMethodType() 2947 long x = (long) vh.getAndBitwiseXorRelease(Void.class, 0, 0x0123456789ABCDEFL); in testArrayWrongMethodType() 2950 long x = (long) vh.getAndBitwiseXorRelease(array, 0, Void.class); in testArrayWrongMethodType() 2953 long x = (long) vh.getAndBitwiseXorRelease(0, 0, 0x0123456789ABCDEFL); in testArrayWrongMethodType() [all …]
|
D | VarHandleTestMethodTypeInt.java | 976 int x = (int) vh.getAndBitwiseXorRelease(null, 0x01234567); in testInstanceFieldWrongMethodType() 1816 int x = (int) vh.getAndBitwiseXorRelease(Void.class); in testStaticFieldWrongMethodType() 1820 Void r = (Void) vh.getAndBitwiseXorRelease(0x01234567); in testStaticFieldWrongMethodType() 1823 boolean x = (boolean) vh.getAndBitwiseXorRelease(0x01234567); in testStaticFieldWrongMethodType() 1827 int x = (int) vh.getAndBitwiseXorRelease(); in testStaticFieldWrongMethodType() 1830 int x = (int) vh.getAndBitwiseXorRelease(0x01234567, Void.class); in testStaticFieldWrongMethodType() 2944 int x = (int) vh.getAndBitwiseXorRelease(null, 0, 0x01234567); in testArrayWrongMethodType() 2947 int x = (int) vh.getAndBitwiseXorRelease(Void.class, 0, 0x01234567); in testArrayWrongMethodType() 2950 int x = (int) vh.getAndBitwiseXorRelease(array, 0, Void.class); in testArrayWrongMethodType() 2953 int x = (int) vh.getAndBitwiseXorRelease(0, 0, 0x01234567); in testArrayWrongMethodType() [all …]
|
D | VarHandleTestMethodTypeByte.java | 976 byte x = (byte) vh.getAndBitwiseXorRelease(null, (byte)0x01); in testInstanceFieldWrongMethodType() 1816 byte x = (byte) vh.getAndBitwiseXorRelease(Void.class); in testStaticFieldWrongMethodType() 1820 Void r = (Void) vh.getAndBitwiseXorRelease((byte)0x01); in testStaticFieldWrongMethodType() 1823 boolean x = (boolean) vh.getAndBitwiseXorRelease((byte)0x01); in testStaticFieldWrongMethodType() 1827 byte x = (byte) vh.getAndBitwiseXorRelease(); in testStaticFieldWrongMethodType() 1830 byte x = (byte) vh.getAndBitwiseXorRelease((byte)0x01, Void.class); in testStaticFieldWrongMethodType() 2944 byte x = (byte) vh.getAndBitwiseXorRelease(null, 0, (byte)0x01); in testArrayWrongMethodType() 2947 byte x = (byte) vh.getAndBitwiseXorRelease(Void.class, 0, (byte)0x01); in testArrayWrongMethodType() 2950 byte x = (byte) vh.getAndBitwiseXorRelease(array, 0, Void.class); in testArrayWrongMethodType() 2953 byte x = (byte) vh.getAndBitwiseXorRelease(0, 0, (byte)0x01); in testArrayWrongMethodType() [all …]
|
D | VarHandleTestMethodTypeShort.java | 976 short x = (short) vh.getAndBitwiseXorRelease(null, (short)0x0123); in testInstanceFieldWrongMethodType() 1816 short x = (short) vh.getAndBitwiseXorRelease(Void.class); in testStaticFieldWrongMethodType() 1820 Void r = (Void) vh.getAndBitwiseXorRelease((short)0x0123); in testStaticFieldWrongMethodType() 1823 boolean x = (boolean) vh.getAndBitwiseXorRelease((short)0x0123); in testStaticFieldWrongMethodType() 1827 short x = (short) vh.getAndBitwiseXorRelease(); in testStaticFieldWrongMethodType() 1830 short x = (short) vh.getAndBitwiseXorRelease((short)0x0123, Void.class); in testStaticFieldWrongMethodType() 2944 short x = (short) vh.getAndBitwiseXorRelease(null, 0, (short)0x0123); in testArrayWrongMethodType() 2947 short x = (short) vh.getAndBitwiseXorRelease(Void.class, 0, (short)0x0123); in testArrayWrongMethodType() 2950 short x = (short) vh.getAndBitwiseXorRelease(array, 0, Void.class); in testArrayWrongMethodType() 2953 short x = (short) vh.getAndBitwiseXorRelease(0, 0, (short)0x0123); in testArrayWrongMethodType() [all …]
|
D | VarHandleTestMethodTypeChar.java | 976 char x = (char) vh.getAndBitwiseXorRelease(null, '\u0123'); in testInstanceFieldWrongMethodType() 1816 char x = (char) vh.getAndBitwiseXorRelease(Void.class); in testStaticFieldWrongMethodType() 1820 Void r = (Void) vh.getAndBitwiseXorRelease('\u0123'); in testStaticFieldWrongMethodType() 1823 boolean x = (boolean) vh.getAndBitwiseXorRelease('\u0123'); in testStaticFieldWrongMethodType() 1827 char x = (char) vh.getAndBitwiseXorRelease(); in testStaticFieldWrongMethodType() 1830 char x = (char) vh.getAndBitwiseXorRelease('\u0123', Void.class); in testStaticFieldWrongMethodType() 2944 char x = (char) vh.getAndBitwiseXorRelease(null, 0, '\u0123'); in testArrayWrongMethodType() 2947 char x = (char) vh.getAndBitwiseXorRelease(Void.class, 0, '\u0123'); in testArrayWrongMethodType() 2950 char x = (char) vh.getAndBitwiseXorRelease(array, 0, Void.class); in testArrayWrongMethodType() 2953 char x = (char) vh.getAndBitwiseXorRelease(0, 0, '\u0123'); in testArrayWrongMethodType() [all …]
|
D | X-VarHandleTestAccess.java.template | 420 $type$ o = ($type$) vh.getAndBitwiseXorRelease(recv, $value1$); 564 $type$ o = ($type$) vh.getAndBitwiseXorRelease($value1$); 838 $type$ o = ($type$) vh.getAndBitwiseXorRelease(recv, $value2$); 839 assertEquals(o, $value1$, "getAndBitwiseXorRelease $type$"); 841 assertEquals(x, ($type$)($value1$ ^ $value2$), "getAndBitwiseXorRelease $type$ value"); 941 $type$ o = ($type$) vh.getAndBitwiseXorRelease(recv, $value1$); 1215 $type$ o = ($type$) vh.getAndBitwiseXorRelease($value2$); 1216 assertEquals(o, $value1$, "getAndBitwiseXorRelease $type$"); 1218 assertEquals(x, ($type$)($value1$ ^ $value2$), "getAndBitwiseXorRelease $type$ value"); 1318 $type$ o = ($type$) vh.getAndBitwiseXorRelease($value1$); [all …]
|
D | X-VarHandleTestByteArrayView.java.template | 367 $type$ o = ($type$) vh.getAndBitwiseXorRelease(array, ci, VALUE_1); 503 $type$ o = ($type$) vh.getAndBitwiseXorRelease(array, ci, VALUE_1); 607 $type$ o = ($type$) vh.getAndBitwiseXorRelease(array, ci, VALUE_1); 788 $type$ o = ($type$) vh.getAndBitwiseXorRelease(array, ci, VALUE_1); 824 $type$ o = ($type$) vh.getAndBitwiseXorRelease(array, ci, VALUE_1); 921 $type$ o = ($type$) vh.getAndBitwiseXorRelease(array, ci, VALUE_1); 1062 $type$ o = ($type$) vh.getAndBitwiseXorRelease(array, ci, VALUE_1); 1208 $type$ o = ($type$) vh.getAndBitwiseXorRelease(array, ci, VALUE_1); 1345 $type$ o = ($type$) vh.getAndBitwiseXorRelease(array, ci, VALUE_1); 1484 $type$ o = ($type$) vh.getAndBitwiseXorRelease(array, ci, VALUE_1); [all …]
|
D | VarHandleTestByteArrayAsLong.java | 330 long o = (long) vh.getAndBitwiseXorRelease(array, ci, VALUE_1); in testArrayNPE() 460 long o = (long) vh.getAndBitwiseXorRelease(array, ci, VALUE_1); in testArrayNPE() 588 long o = (long) vh.getAndBitwiseXorRelease(array, ci, VALUE_1); in testArrayUnsupported() 725 long o = (long) vh.getAndBitwiseXorRelease(array, ci, VALUE_1); in testArrayIndexOutOfBounds() 865 long o = (long) vh.getAndBitwiseXorRelease(array, ci, VALUE_1); in testArrayIndexOutOfBounds() 996 long o = (long) vh.getAndBitwiseXorRelease(array, ci, VALUE_1); in testArrayMisalignedAccess() 1129 long o = (long) vh.getAndBitwiseXorRelease(array, ci, VALUE_1); in testArrayMisalignedAccess() 1410 long o = (long) vh.getAndBitwiseXorRelease(array, i, VALUE_2); in testArrayReadWrite() 1693 long o = (long) vh.getAndBitwiseXorRelease(array, i, VALUE_2); in testArrayReadWrite()
|
D | VarHandleTestByteArrayAsInt.java | 330 int o = (int) vh.getAndBitwiseXorRelease(array, ci, VALUE_1); in testArrayNPE() 460 int o = (int) vh.getAndBitwiseXorRelease(array, ci, VALUE_1); in testArrayNPE() 588 int o = (int) vh.getAndBitwiseXorRelease(array, ci, VALUE_1); in testArrayUnsupported() 725 int o = (int) vh.getAndBitwiseXorRelease(array, ci, VALUE_1); in testArrayIndexOutOfBounds() 865 int o = (int) vh.getAndBitwiseXorRelease(array, ci, VALUE_1); in testArrayIndexOutOfBounds() 996 int o = (int) vh.getAndBitwiseXorRelease(array, ci, VALUE_1); in testArrayMisalignedAccess() 1129 int o = (int) vh.getAndBitwiseXorRelease(array, ci, VALUE_1); in testArrayMisalignedAccess() 1410 int o = (int) vh.getAndBitwiseXorRelease(array, i, VALUE_2); in testArrayReadWrite() 1693 int o = (int) vh.getAndBitwiseXorRelease(array, i, VALUE_2); in testArrayReadWrite()
|
D | VarHandleTestAccessDouble.java | 314 double o = (double) vh.getAndBitwiseXorRelease(recv, 1.0d); in testInstanceFinalFieldUnsupported() 398 double o = (double) vh.getAndBitwiseXorRelease(1.0d); in testStaticFinalFieldUnsupported() 626 double o = (double) vh.getAndBitwiseXorRelease(recv, 1.0d); in testInstanceFieldUnsupported() 854 double o = (double) vh.getAndBitwiseXorRelease(1.0d); in testStaticFieldUnsupported() 1089 double o = (double) vh.getAndBitwiseXorRelease(array, i, 1.0d); in testArrayUnsupported()
|
D | VarHandleTestAccessFloat.java | 314 float o = (float) vh.getAndBitwiseXorRelease(recv, 1.0f); in testInstanceFinalFieldUnsupported() 398 float o = (float) vh.getAndBitwiseXorRelease(1.0f); in testStaticFinalFieldUnsupported() 626 float o = (float) vh.getAndBitwiseXorRelease(recv, 1.0f); in testInstanceFieldUnsupported() 854 float o = (float) vh.getAndBitwiseXorRelease(1.0f); in testStaticFieldUnsupported() 1089 float o = (float) vh.getAndBitwiseXorRelease(array, i, 1.0f); in testArrayUnsupported()
|
D | VarHandleTestAccessString.java | 332 String o = (String) vh.getAndBitwiseXorRelease(recv, "foo"); in testInstanceFinalFieldUnsupported() 427 String o = (String) vh.getAndBitwiseXorRelease("foo"); in testStaticFinalFieldUnsupported() 639 String o = (String) vh.getAndBitwiseXorRelease(recv, "foo"); in testInstanceFieldUnsupported() 851 String o = (String) vh.getAndBitwiseXorRelease("foo"); in testStaticFieldUnsupported() 1070 String o = (String) vh.getAndBitwiseXorRelease(array, i, "foo"); in testArrayUnsupported()
|
D | VarHandleTestAccessBoolean.java | 591 boolean o = (boolean) vh.getAndBitwiseXorRelease(recv, false); in testInstanceField() 851 boolean o = (boolean) vh.getAndBitwiseXorRelease(false); in testStaticField() 1114 boolean o = (boolean) vh.getAndBitwiseXorRelease(array, i, false); in testArray() 1257 boolean o = (boolean) vh.getAndBitwiseXorRelease(array, ci, true); in testArrayIndexOutOfBounds()
|
D | VarHandleTestAccessByte.java | 596 byte o = (byte) vh.getAndBitwiseXorRelease(recv, (byte)0x23); in testInstanceField() 872 byte o = (byte) vh.getAndBitwiseXorRelease((byte)0x23); in testStaticField() 1151 byte o = (byte) vh.getAndBitwiseXorRelease(array, i, (byte)0x23); in testArray() 1294 byte o = (byte) vh.getAndBitwiseXorRelease(array, ci, (byte)0x01); in testArrayIndexOutOfBounds()
|
D | VarHandleTestAccessInt.java | 596 int o = (int) vh.getAndBitwiseXorRelease(recv, 0x89ABCDEF); in testInstanceField() 872 int o = (int) vh.getAndBitwiseXorRelease(0x89ABCDEF); in testStaticField() 1151 int o = (int) vh.getAndBitwiseXorRelease(array, i, 0x89ABCDEF); in testArray() 1294 int o = (int) vh.getAndBitwiseXorRelease(array, ci, 0x01234567); in testArrayIndexOutOfBounds()
|
D | VarHandleTestAccessShort.java | 596 short o = (short) vh.getAndBitwiseXorRelease(recv, (short)0x4567); in testInstanceField() 872 short o = (short) vh.getAndBitwiseXorRelease((short)0x4567); in testStaticField() 1151 short o = (short) vh.getAndBitwiseXorRelease(array, i, (short)0x4567); in testArray() 1294 short o = (short) vh.getAndBitwiseXorRelease(array, ci, (short)0x0123); in testArrayIndexOutOfBounds()
|
D | VarHandleTestAccessLong.java | 596 long o = (long) vh.getAndBitwiseXorRelease(recv, 0xCAFEBABECAFEBABEL); in testInstanceField() 872 long o = (long) vh.getAndBitwiseXorRelease(0xCAFEBABECAFEBABEL); in testStaticField() 1151 long o = (long) vh.getAndBitwiseXorRelease(array, i, 0xCAFEBABECAFEBABEL); in testArray() 1294 long o = (long) vh.getAndBitwiseXorRelease(array, ci, 0x0123456789ABCDEFL); in testArrayIndexOutOfBounds()
|
D | VarHandleTestAccessChar.java | 596 char o = (char) vh.getAndBitwiseXorRelease(recv, '\u4567'); in testInstanceField() 872 char o = (char) vh.getAndBitwiseXorRelease('\u4567'); in testStaticField() 1151 char o = (char) vh.getAndBitwiseXorRelease(array, i, '\u4567'); in testArray() 1294 char o = (char) vh.getAndBitwiseXorRelease(array, ci, '\u0123'); in testArrayIndexOutOfBounds()
|
D | VarHandleTestByteArrayAsShort.java | 380 short o = (short) vh.getAndBitwiseXorRelease(array, ci, VALUE_1); in testArrayUnsupported() 497 short o = (short) vh.getAndBitwiseXorRelease(array, ci, VALUE_1); in testArrayUnsupported() 588 short o = (short) vh.getAndBitwiseXorRelease(array, ci, VALUE_1); in testArrayUnsupported()
|
D | VarHandleTestByteArrayAsChar.java | 380 char o = (char) vh.getAndBitwiseXorRelease(array, ci, VALUE_1); in testArrayUnsupported() 497 char o = (char) vh.getAndBitwiseXorRelease(array, ci, VALUE_1); in testArrayUnsupported() 588 char o = (char) vh.getAndBitwiseXorRelease(array, ci, VALUE_1); in testArrayUnsupported()
|
D | X-VarHandleTestMethodHandleAccess.java.template | 373 assertEquals(o, $value1$, "getAndBitwiseXorRelease $type$"); 375 assertEquals(x, ($type$)($value1$ ^ $value2$), "getAndBitwiseXorRelease $type$ value"); 690 assertEquals(o, $value1$, "getAndBitwiseXorRelease $type$"); 692 assertEquals(x, ($type$)($value1$ ^ $value2$), "getAndBitwiseXorRelease $type$ value"); 1008 assertEquals(o, $value1$, "getAndBitwiseXorRelease $type$"); 1010 assertEquals(x, ($type$)($value1$ ^ $value2$), "getAndBitwiseXorRelease $type$ value");
|
/libcore/ojluni/annotations/flagged_api/java/lang/invoke/ |
D | VarHandle.annotated.java | 94 public final native java.lang.Object getAndBitwiseXorRelease(java.lang.Object... args); in getAndBitwiseXorRelease() method in VarHandle
|
/libcore/luni/src/main/native/ |
D | java_lang_invoke_VarHandle.cpp | 231 NATIVE_METHOD(VarHandle, getAndBitwiseXorRelease, "([Ljava/lang/Object;)Ljava/lang/Object;"),
|