HomeSort by relevance Sort by last modified time
    Searched refs:Short (Results 1 - 25 of 254) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ShortTest.java 22 private Short sp = new Short((short) 18000);
23 private Short sn = new Short((short) -19000);
26 * @tests java.lang.Short#byteValue()
29 // Test for method byte java.lang.Short.byteValue()
30 assertEquals("Returned incorrect byte value", 0, new Short(Short.MIN_VALUE
    [all...]
  /cts/tools/vm-tests/src/dot/junit/opcodes/add_int_lit16/d/
T_add_int_lit16_12.java 22 return Short.MIN_VALUE + Short.MIN_VALUE;
T_add_int_lit16_7.java 22 return 0 + Short.MAX_VALUE;
T_add_int_lit16_8.java 22 return Integer.MAX_VALUE + Short.MAX_VALUE;
  /cts/tools/vm-tests/src/dot/junit/opcodes/and_int_lit16/d/
T_and_int_lit16_5.java 22 return Short.MAX_VALUE & Short.MIN_VALUE;
  /cts/tools/vm-tests/src/dot/junit/opcodes/and_int_lit8/d/
T_and_int_lit8_5.java 22 return Short.MAX_VALUE & Short.MIN_VALUE;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/add_int_lit16/d/
T_add_int_lit16_12.java 22 return Short.MIN_VALUE + Short.MIN_VALUE;
T_add_int_lit16_7.java 22 return 0 + Short.MAX_VALUE;
T_add_int_lit16_8.java 22 return Integer.MAX_VALUE + Short.MAX_VALUE;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/and_int_lit16/d/
T_and_int_lit16_5.java 22 return Short.MAX_VALUE & Short.MIN_VALUE;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/and_int_lit8/d/
T_and_int_lit8_5.java 22 return Short.MAX_VALUE & Short.MIN_VALUE;
  /libcore/luni/src/test/java/libcore/java/lang/
ShortTest.java 21 final short min = Short.MIN_VALUE;
22 final short zero = 0;
23 final short max = Short.MAX_VALUE;
24 assertTrue(Short.compare(max, max) == 0);
25 assertTrue(Short.compare(min, min) == 0);
26 assertTrue(Short.compare(zero, zero) == 0);
27 assertTrue(Short.compare(max, zero) > 0);
28 assertTrue(Short.compare(max, min) > 0)
    [all...]
  /cts/tools/vm-tests/src/dot/junit/opcodes/div_int_lit16/d/
T_div_int_lit16_11.java 22 return 1 / Short.MAX_VALUE;
T_div_int_lit16_12.java 22 return 1 / Short.MIN_VALUE;
T_div_int_lit16_10.java 22 return Integer.MIN_VALUE / Short.MAX_VALUE;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/div_int_lit16/d/
T_div_int_lit16_11.java 22 return 1 / Short.MAX_VALUE;
T_div_int_lit16_12.java 22 return 1 / Short.MIN_VALUE;
  /frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
dct.h 51 void idct_col0(Short *blk);
52 void idct_col1(Short *blk);
53 void idct_col2(Short *blk);
54 void idct_col3(Short *blk);
55 void idct_col4(Short *blk);
56 void idct_col0x40(Short *blk);
57 void idct_col0x20(Short *blk);
58 void idct_col0x10(Short *blk);
60 void idct_rowInter(Short *srce, UChar *rec, Int lx);
61 void idct_row0Inter(Short *blk, UChar *rec, Int lx)
    [all...]
  /libcore/luni/src/main/java/java/lang/
Short.java 21 * The wrapper for the primitive type {@code short}.
27 public final class Short extends Number implements Comparable<Short> {
34 private final short value;
37 * Constant for the maximum {@code short} value, 2<sup>15</sup>-1.
39 public static final short MAX_VALUE = (short) 0x7FFF;
42 * Constant for the minimum {@code short} value, -2<sup>15</sup>.
44 public static final short MIN_VALUE = (short) 0x8000
    [all...]
  /cts/tools/vm-tests/src/dot/junit/opcodes/add_int_lit8/d/
T_add_int_lit8_12.java 22 return Short.MIN_VALUE + Byte.MIN_VALUE;
  /cts/tools/vm-tests/src/dot/junit/opcodes/or_int_lit16/d/
T_or_int_lit16_5.java 22 int a = Short.MAX_VALUE;
  /cts/tools/vm-tests/src/dot/junit/opcodes/rsub_int/d/
T_rsub_int_4.java 22 int b = Short.MAX_VALUE;
T_rsub_int_5.java 22 int b = Short.MIN_VALUE;
  /cts/tools/vm-tests/src/dot/junit/opcodes/xor_int_lit16/d/
T_xor_int_lit16_4.java 22 return Integer.MAX_VALUE ^ Short.MIN_VALUE;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/add_int_lit8/d/
T_add_int_lit8_12.java 22 return Short.MIN_VALUE + Byte.MIN_VALUE;

Completed in 362 milliseconds

1 2 3 4 5 6 7 8 91011