Searched defs:MIN_VALUE (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/misc/
H A DDoubleConsts.java45 public static final double MIN_VALUE = java.lang.Double.MIN_VALUE; field in class:DoubleConsts
82 * <code>FpUtils.ilogb(Double.MIN_VALUE)</code>.
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/src/share/classes/sun/text/normalizer/
H A DUCharacter.java189 public static final int MIN_VALUE = UTF16.CODEPOINT_MIN_VALUE; field in class:UCharacter
195 * Up-to-date Unicode implementation of java.lang.Character.MIN_VALUE
291 if (ch < MIN_VALUE || ch > MAX_VALUE) {
H A DUnicodeSet.java69 * <code>MIN_VALUE-MAX_VALUE</code>
286 public static final int MIN_VALUE = LOW; field in class:UnicodeSet
489 // MIN_VALUE and MAX_VALUE, then the inverse representation will
492 getRangeStart(0) == MIN_VALUE &&
539 if (start < MIN_VALUE || start > MAX_VALUE) {
542 if (end < MIN_VALUE || end > MAX_VALUE) {
565 if (c < MIN_VALUE || c > MAX_VALUE) {
702 if (start < MIN_VALUE || start > MAX_VALUE) {
705 if (end < MIN_VALUE || end > MAX_VALUE) {
717 * <code>complement(MIN_VALUE, MAX_VALU
[all...]
/openjdk7/jdk/src/share/classes/java/lang/
H A DByte.java50 public static final byte MIN_VALUE = -128; field in class:Byte
149 if (i < MIN_VALUE || i > MAX_VALUE)
277 if (i < MIN_VALUE || i > MAX_VALUE)
H A DShort.java49 public static final short MIN_VALUE = -32768; field in class:Short
118 if (i < MIN_VALUE || i > MAX_VALUE)
282 if (i < MIN_VALUE || i > MAX_VALUE)
H A DDouble.java98 public static final double MIN_VALUE = 0x0.0000000000001P-1022; // 4.9e-324 field in class:Double
265 * <tr><td>{@code Double.MIN_VALUE}</td>
416 * than or equal to {@link #MIN_VALUE}/2), rounding to float will
H A DFloat.java97 public static final float MIN_VALUE = 0x0.000002P-126f; // 1.4e-45f field in class:Float
268 * <tr><td>{@code Float.MIN_VALUE}</td>
377 * than or equal to {@link #MIN_VALUE}/2), rounding to float will
H A DInteger.java57 public static final int MIN_VALUE = 0x80000000; field in class:Integer
328 if (i == Integer.MIN_VALUE)
343 * Will fail if i == Integer.MIN_VALUE
479 limit = Integer.MIN_VALUE;
979 // If number is Integer.MIN_VALUE, we'll end up here. The next line
H A DLong.java55 public static final long MIN_VALUE = 0x8000000000000000L; field in class:Long
264 if (i == Long.MIN_VALUE)
279 * Will fail if i == Long.MIN_VALUE
428 limit = Long.MIN_VALUE;
660 // If number is Long.MIN_VALUE, we'll end up here. The next line
H A DCharacter.java158 public static final char MIN_VALUE = '\u0000'; field in class:Character
4481 * {@link #MIN_VALUE} and {@link #MAX_VALUE} inclusive;
4488 // codePoint >= MIN_VALUE && codePoint <= MAX_VALUE
/openjdk7/hotspot/src/share/vm/opto/
H A DcallGenerator.hpp293 static float MIN_VALUE() { return -1.0e10; } function in class:WarmCallInfo

Completed in 55 milliseconds