Home
last modified time | relevance | path

Searched refs:Short (Results 1 – 25 of 61) sorted by relevance

123

/art/test/567-checker-builder-intrinsics/src/
DTestCompare.java348 expectEquals(-1, compareShorts(Short.MIN_VALUE, (short)(Short.MIN_VALUE + 1))); in testCompareShorts()
349 expectEquals(-1, compareShorts(Short.MIN_VALUE, (short)-1)); in testCompareShorts()
350 expectEquals(-1, compareShorts(Short.MIN_VALUE, (short)0)); in testCompareShorts()
351 expectEquals(-1, compareShorts(Short.MIN_VALUE, (short)1)); in testCompareShorts()
352 expectEquals(-1, compareShorts(Short.MIN_VALUE, (short)Short.MAX_VALUE)); in testCompareShorts()
357 expectEquals(0, compareShorts(Short.MIN_VALUE, Short.MIN_VALUE)); in testCompareShorts()
361 expectEquals(0, compareShorts(Short.MAX_VALUE, Short.MAX_VALUE)); in testCompareShorts()
366 expectEquals(1, compareShorts(Short.MAX_VALUE, Short.MIN_VALUE)); in testCompareShorts()
367 expectEquals(1, compareShorts(Short.MAX_VALUE, (short)-1)); in testCompareShorts()
368 expectEquals(1, compareShorts(Short.MAX_VALUE, (short)0)); in testCompareShorts()
[all …]
DTestSignum.java132 expectEquals(-1, signShort((short)Short.MIN_VALUE)); in testSignShort()
138 expectEquals(1, signShort((short)Short.MAX_VALUE)); in testSignShort()
/art/test/712-varhandle-invocations/src/
DSampleValues.java33 public static final Short[] SHORTS =
34 new Short[] {(short) -32768, (short) -384, (short) 32767, (short) 0xaa55};
86 public static Short get_Short(int index) { in get_Short()
DVarHandleUnitTest.java66 assertEquals(Short.valueOf(expected), Short.valueOf(actual)); in assertEquals()
/art/test/904-object-allocation/
Dexpected.txt2 …ng.Integer/java.lang.Integer size 16, ObjectAllocated type java.lang.Short/java.lang.Short size 16]
/art/test/458-checker-instruct-simplification/src/
DMain.java2647 assertIntEquals(Short.MAX_VALUE, $noinline$floatToIntToShort((float)(Short.MIN_VALUE - 1))); in main()
2648 assertIntEquals(Short.MIN_VALUE, $noinline$floatToIntToShort((float)(Short.MAX_VALUE + 1))); in main()
2658 assertIntEquals(Short.MIN_VALUE, $noinline$shortToCharToShort(Short.MIN_VALUE)); in main()
2659 assertIntEquals(Short.MAX_VALUE, $noinline$shortToCharToShort(Short.MAX_VALUE)); in main()
2661 assertIntEquals(Short.MIN_VALUE, $noinline$shortToLongToInt(Short.MIN_VALUE)); in main()
2662 assertIntEquals(Short.MAX_VALUE, $noinline$shortToLongToInt(Short.MAX_VALUE)); in main()
2665 assertIntEquals(0, $noinline$shortToCharToByte(Short.MIN_VALUE)); in main()
2666 assertIntEquals(-1, $noinline$shortToCharToByte(Short.MAX_VALUE)); in main()
2686 assertIntEquals(Short.MAX_VALUE, $noinline$intAnd0x17fffToShort(Integer.MAX_VALUE)); in main()
2692 assertDoubleEquals((double)Short.MAX_VALUE, in main()
[all …]
/art/test/460-multiple-returns3/src/
DMain.java27 short result = (Short) m.invoke(null); in main()
/art/test/952-invoke-custom/src/
DTestReturnValues.java285 Short.MIN_VALUE, Short.MAX_VALUE, (short) Short.SIZE, (short) -Short.SIZE in testShortReturnValues()
/art/test/564-checker-bitcount/src/
DMain.java105 int signExtensionSize = Integer.SIZE - Short.SIZE;
107 int signBit = Short.SIZE - 1;
123 for (int i = 0; i < Short.SIZE; i++) {
/art/test/904-object-allocation/src/art/
DTest904.java38 Short.class.getName(); in prefetchClassNames()
64 l.add(new Short((short)0)); in doTest()
/art/test/045-reflect-array/src/
DMain.java126 Object shortArray = Array.newInstance(Short.TYPE, 1); in testSingleShort()
132 Short box = (Short) Array.get(shortArray, 0); in testSingleShort()
/art/tools/dexfuzz/src/dexfuzz/program/
DCodeTranslator.java214 private Map<Short,Integer> createTryHandlerOffsetToIndexMap(CodeItem codeItem) { in createTryHandlerOffsetToIndexMap()
216 List<Short> uniqueOffsets = new ArrayList<Short>(); in createTryHandlerOffsetToIndexMap()
241 Map<Short,Integer> offsetIndexMap = new HashMap<Short,Integer>(); in createTryHandlerOffsetToIndexMap()
253 Map<Short,Integer> offsetIndexMap = createTryHandlerOffsetToIndexMap(codeItem); in readTryBlocks()
359 Map<Short,Integer> offsetIndexMap = createTryHandlerOffsetToIndexMap(codeItem); in updateTryBlocks()
/art/test/1968-force-early-return/src/art/
DNonStandardExit.java31 if (n instanceof Integer || n instanceof Short || n instanceof Byte) { in forceEarlyReturn()
/art/test/1969-force-early-return-void/src/art/
DNonStandardExit.java31 if (n instanceof Integer || n instanceof Short || n instanceof Byte) { in forceEarlyReturn()
/art/test/1970-force-early-return-long/src/art/
DNonStandardExit.java31 if (n instanceof Integer || n instanceof Short || n instanceof Byte) { in forceEarlyReturn()
/art/test/1971-multi-force-early-return/src/art/
DNonStandardExit.java31 if (n instanceof Integer || n instanceof Short || n instanceof Byte) { in forceEarlyReturn()
/art/test/jvmti-common/
DNonStandardExit.java31 if (n instanceof Integer || n instanceof Short || n instanceof Byte) { in forceEarlyReturn()
/art/test/959-invoke-polymorphic-accessors/src/
DMain.java86 Short, enumConstant
502 short shortValue = value instanceof Short ? ((Short) value).shortValue() : (short) 0; in tryAccessor()
504 resultFor(primitive, PrimitiveType.Short, accessor, AccessorType.IPUT)); in tryAccessor()
506 resultFor(primitive, PrimitiveType.Short, accessor, AccessorType.SPUT)); in tryAccessor()
508 resultFor(primitive, PrimitiveType.Short, accessor, AccessorType.IGET)); in tryAccessor()
510 resultFor(primitive, PrimitiveType.Short, accessor, AccessorType.SGET)); in tryAccessor()
614 Short boxed = new Short(s); in main()
616 valueHolder, PrimitiveType.Short, boxed, AccessorType.IPUT); in main()
618 valueHolder, PrimitiveType.Short, boxed, AccessorType.IGET); in main()
621 valueHolder, PrimitiveType.Short, boxed, AccessorType.SPUT); in main()
[all …]
/art/test/ti-agent/
Dscoped_primitive_array.h96 INSTANTIATE_SCOPED_PRIMITIVE_ARRAY_RO(jshort, Short);
146 INSTANTIATE_SCOPED_PRIMITIVE_ARRAY_RW(jshort, Short);
/art/test/684-checker-simd-dotprod/src/other/
DTestVarious.java392 final short MAX_S = Short.MAX_VALUE; in run()
393 final short MIN_S = Short.MAX_VALUE; in run()
/art/test/044-proxy/src/
DReturnsAndArgPassing.java139 myHandler.returnType = Short.class; in testProxyReturns()
140 check(proxyMyInterface.shortFoo() == Short.MAX_VALUE); in testProxyReturns()
144 check(proxyMyInterface.shortBar() == Short.MIN_VALUE); in testProxyReturns()
386 myHandler.returnType = Short.class; // Short -> byte == fail in testProxyReturns()
/art/test/988-method-trace/src/art/
DTest988Intrinsics.java38 java.lang.Short.class.toString(); in initialize()
80 java.lang.Short.reverseBytes((short)0); in test()
/art/test/093-serialization/src/
DMain.java113 Short eight;
/art/test/021-string2/src/junit/framework/
DAssert.java186 assertEquals(message, new Short(expected), new Short(actual)); in assertEquals()
/art/test/082-inline-execute/src/junit/framework/
DAssert.java186 assertEquals(message, new Short(expected), new Short(actual)); in assertEquals()

123