Home
last modified time | relevance | path

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

/art/test/712-varhandle-invocations/src/
DVarHandleArrayTests.java154 final VarHandle vhShort = in testByteArrayViewVarHandle() local
156 assertThrowsIOOBE(() -> vhShort.get(array, -1)); in testByteArrayViewVarHandle()
157 assertThrowsIOOBE(() -> vhShort.get(array, Integer.MIN_VALUE)); in testByteArrayViewVarHandle()
158 assertThrowsIOOBE(() -> vhShort.get(array, array.length)); in testByteArrayViewVarHandle()
159 assertThrowsIOOBE(() -> vhShort.get(array, array.length - 1)); in testByteArrayViewVarHandle()
160 assertThrowsIOOBE(() -> vhShort.get(array, Integer.MAX_VALUE)); in testByteArrayViewVarHandle()
165 vhShort.set(array, i, value); in testByteArrayViewVarHandle()
166 assertEquals(value, (short) vhShort.get(array, i)); in testByteArrayViewVarHandle()
174 vhShort.getAcquire(array, i); in testByteArrayViewVarHandle()
175 vhShort.setRelease(array, i, (short) 0); in testByteArrayViewVarHandle()
[all …]