Searched refs:MIN_VALUE (Results 1 - 25 of 266) sorted by relevance

1234567891011

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DMachineDescriptionTwosComplement.java34 Byte.MIN_VALUE,
35 Short.MIN_VALUE,
36 Integer.MIN_VALUE,
37 Long.MIN_VALUE
/openjdk7/jdk/test/java/math/BigInteger/
H A DExtremeShiftingTests.java27 * @summary Tests of shiftLeft and shiftRight on Integer.MIN_VALUE
35 ONE.shiftLeft(Integer.MIN_VALUE);
42 ONE.shiftRight(Integer.MIN_VALUE);
H A DStringConstructor.java45 constructWithoutError(Integer.toString(Integer.MIN_VALUE),
46 (long)Integer.MIN_VALUE);
49 constructWithoutError(Long.toString(Long.MIN_VALUE),
50 Long.MIN_VALUE);
/openjdk7/jdk/test/java/math/BigDecimal/
H A DPowTests.java43 {BigDecimal.valueOf(0, Integer.MIN_VALUE), new BigDecimal(0), BigDecimal.valueOf(1, 0)},
44 {BigDecimal.valueOf(0, Integer.MIN_VALUE), new BigDecimal(1), BigDecimal.valueOf(0, Integer.MIN_VALUE)},
45 {BigDecimal.valueOf(0, Integer.MIN_VALUE), new BigDecimal(2), BigDecimal.valueOf(0, Integer.MIN_VALUE)},
46 {BigDecimal.valueOf(0, Integer.MIN_VALUE), new BigDecimal(999999999), BigDecimal.valueOf(0, Integer.MIN_VALUE)},
53 {BigDecimal.valueOf(1, Integer.MIN_VALUE), new BigDecimal(0), BigDecimal.valueOf(1, 0)},
54 {BigDecimal.valueOf(1, Integer.MIN_VALUE), new BigDecimal(1), BigDecimal.valueOf(1, Integer.MIN_VALUE)},
[all...]
/openjdk7/hotspot/test/compiler/6778657/
H A DTest.java66 check_f2i(Integer.MIN_VALUE);
68 check_f2l(Long.MIN_VALUE);
70 check_d2i(Integer.MIN_VALUE);
72 check_d2l(Long.MIN_VALUE);
/openjdk7/jdk/test/java/beans/XMLDecoder/spec/
H A DTestLong.java54 validate((long) Byte.MIN_VALUE, decoder.readObject());
56 validate((long) Short.MIN_VALUE, decoder.readObject());
58 validate((long) Integer.MIN_VALUE, decoder.readObject());
60 validate(Long.MIN_VALUE, decoder.readObject());
H A DTestInt.java52 validate((int) Byte.MIN_VALUE, decoder.readObject());
54 validate((int) Short.MIN_VALUE, decoder.readObject());
56 validate(Integer.MIN_VALUE, decoder.readObject());
H A DTestShort.java50 validate((short) Byte.MIN_VALUE, decoder.readObject());
52 validate(Short.MIN_VALUE, decoder.readObject());
/openjdk7/jdk/test/java/lang/String/
H A DRegionMatches.java37 if (!s1.regionMatches(0,s2,0,Integer.MIN_VALUE))
/openjdk7/jdk/test/java/lang/StringBuilder/
H A DEnsureCapacity.java53 sb.ensureCapacity(Integer.MIN_VALUE);
59 sb.append(str, 0, Integer.MIN_VALUE + 10);
70 sb.ensureCapacity(Integer.MIN_VALUE);
76 sb.append(str, 0, Integer.MIN_VALUE + 10);
/openjdk7/hotspot/test/compiler/6443505/
H A DTest6443505.java36 test(Integer.MIN_VALUE, 0);
37 test(0, Integer.MIN_VALUE);
38 test(Integer.MIN_VALUE, -1);
39 test(-1, Integer.MIN_VALUE);
40 test(Integer.MIN_VALUE, 1);
41 test(1, Integer.MIN_VALUE);
50 test(Integer.MIN_VALUE, Integer.MAX_VALUE);
51 test(Integer.MAX_VALUE, Integer.MIN_VALUE);
/openjdk7/jdk/test/java/lang/Byte/
H A DDecode.java63 check(new String(""+Byte.MIN_VALUE), Byte.MIN_VALUE);
84 check(Integer.toString((int)Byte.MIN_VALUE), Byte.MIN_VALUE);
93 checkFailure(Integer.toString((int)Byte.MIN_VALUE - 1), "Out of range");
/openjdk7/jdk/test/java/lang/Integer/
H A DDecode.java62 check(new String(""+Integer.MIN_VALUE), Integer.MIN_VALUE);
83 check(Long.toString(Integer.MIN_VALUE), Integer.MIN_VALUE);
92 checkFailure(Long.toString((long)Integer.MIN_VALUE - 1L), "Out of range");
/openjdk7/jdk/test/java/lang/Long/
H A DDecode.java64 check(new String(""+Long.MIN_VALUE), Long.MIN_VALUE);
85 check(Long.toString(Long.MIN_VALUE), Long.MIN_VALUE);
94 checkFailure(BigInteger.valueOf(Long.MIN_VALUE).subtract(BigInteger.ONE).toString(),
/openjdk7/jdk/test/java/lang/Short/
H A DDecode.java63 check(new String(""+Short.MIN_VALUE), Short.MIN_VALUE);
84 check(Integer.toString((int)Short.MIN_VALUE), Short.MIN_VALUE);
93 checkFailure(Integer.toString((int)Short.MIN_VALUE - 1), "Out of range");
/openjdk7/jdk/test/java/util/ArrayList/
H A DEnsureCapacity.java50 al.ensureCapacity(Integer.MIN_VALUE);
61 vector.ensureCapacity(Integer.MIN_VALUE);
/openjdk7/jdk/test/javax/swing/border/
H A DTest6625450.java41 test(true, 0, Integer.MIN_VALUE);
46 test(true, Integer.MIN_VALUE, 0);
/openjdk7/jdk/src/share/classes/sun/misc/
H A DFloatConsts.java45 public static final float MIN_VALUE = java.lang.Float.MIN_VALUE; field in class:FloatConsts
77 * value returned by <code>FpUtils.ilogb(Float.MIN_VALUE)</code>.
/openjdk7/jdk/test/java/lang/Math/
H A DIeeeRecommendedTests.java131 +Float.MIN_VALUE,
189 * Start with MIN_VALUE, left shift, test high value, low
197 float top=Float.MIN_VALUE;
207 // (i == 2) would just retest MIN_VALUE
238 +Double.MIN_VALUE,
296 * Start with MIN_VALUE, left shift, test high value, low
304 double top=Double.MIN_VALUE;
314 // (i == 2) would just retest MIN_VALUE
405 Float.MIN_VALUE},
408 Float.MIN_VALUE},
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DLongValueImpl.java107 if ((value > Byte.MAX_VALUE) || (value < Byte.MIN_VALUE)) {
115 if ((value > Character.MAX_VALUE) || (value < Character.MIN_VALUE)) {
123 if ((value > Short.MAX_VALUE) || (value < Short.MIN_VALUE)) {
131 if ((value > Integer.MAX_VALUE) || (value < Integer.MIN_VALUE)) {
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DLongValueImpl.java108 if ((value > Byte.MAX_VALUE) || (value < Byte.MIN_VALUE)) {
116 if ((value > Character.MAX_VALUE) || (value < Character.MIN_VALUE)) {
124 if ((value > Short.MAX_VALUE) || (value < Short.MIN_VALUE)) {
132 if ((value > Integer.MAX_VALUE) || (value < Integer.MIN_VALUE)) {
/openjdk7/hotspot/test/compiler/5091921/
H A DTest6850611.java42 for (int i = Integer.MIN_VALUE; i < Integer.MAX_VALUE; ++i) {
/openjdk7/jdk/test/java/lang/Double/
H A DExtrema.java27 * @summary Testing values of Double.{MIN_VALUE, MIN_NORMAL, MAX_VALUE}
33 if (Double.MIN_VALUE != Double.longBitsToDouble(0x1L))
34 throw new RuntimeException("Double.MIN_VALUE is not equal "+
/openjdk7/jdk/test/java/lang/Float/
H A DExtrema.java27 * @summary Testing values of Float.{MIN_VALUE, MIN_NORMAL, MAX_VALUE}
33 if (Float.MIN_VALUE != Float.intBitsToFloat(0x1))
34 throw new RuntimeException("Float.MIN_VALUE is not equal "+
/openjdk7/jdk/test/javax/swing/plaf/metal/MetalBorders/
H A DTest6657026.java40 private static final Insets NEGATIVE = new Insets(Integer.MIN_VALUE,
41 Integer.MIN_VALUE,
42 Integer.MIN_VALUE,
43 Integer.MIN_VALUE);

Completed in 48 milliseconds

1234567891011