Searched refs:huge (Results 1 - 15 of 15) sorted by relevance

/openjdk9/jdk/test/java/util/Vector/
H A DBug8148174.java29 * @ignore This test has huge memory requirements
35 java.util.Vector<Object> huge = new java.util.Vector<>(size);
37 huge.add(null);
39 huge.addAll(huge);
/openjdk9/jdk/test/java/util/ArrayList/
H A DBug8146568.java29 * @ignore This test has huge memory requirements
35 java.util.ArrayList<Object> huge = new java.util.ArrayList<>(size);
37 huge.add(null);
39 huge.addAll(huge);
/openjdk9/jdk/src/java.base/share/native/libfdlibm/
H A Ds_floor.c38 static const double huge = 1.0e300; variable
40 static double huge = 1.0e300; variable
57 if(huge+x>0.0) {/* return 0*sign(x) if |x|<1 */
65 if(huge+x>0.0) { /* raise inexact flag */
76 if(huge+x>0.0) { /* raise inexact flag */
H A Ds_scalbn.c42 huge = 1.0e+300, variable
65 if (k > 0x7fe) return huge*copysign(huge,x); /* overflow */
70 return huge*copysign(huge,x); /*overflow*/
H A Ds_ceil.c38 static const double huge = 1.0e300; variable
40 static double huge = 1.0e300; variable
57 if(huge+x>0.0) {/* return 0*sign(x) if |x|<1 */
64 if(huge+x>0.0) { /* raise inexact flag */
75 if(huge+x>0.0) { /* raise inexact flag */
H A De_atanh.c47 static const double one = 1.0, huge = 1e300; variable
49 static double one = 1.0, huge = 1e300; variable
71 if(ix<0x3e300000&&(huge+x)>zero) return x; /* x<2**-28 */
H A De_cosh.c40 * ln2ovft < x : cosh(x) := huge*huge (overflow)
50 static const double one = 1.0, half=0.5, huge = 1.0e300; variable
52 static double one = 1.0, half=0.5, huge = 1.0e300; variable
100 return huge*huge;
H A De_exp.c98 huge = 1.0e+300, variable
136 if(x > o_threshold) return huge*huge; /* overflow */
153 if(huge+x>one) return one+x;/* trigger inexact */
H A Ds_expm1.c129 huge = 1.0e+300, variable
158 /* filter out huge and non-finite argument */
166 if(x > o_threshold) return huge*huge; /* overflow */
191 t = huge+x; /* return x with inexact flags when x!=0 */
192 return x - (t-(huge+x));
H A Ds_atan.c94 huge = 1.0e300; variable
116 if(huge+x>one) return x; /* raise inexact */
H A De_asin.c65 huge = 1.000e+300, variable
99 if(huge+x>one) return x;/* return x with inexact if x!=0*/
H A Djfdlibm.h37 #define huge HUGE_NUMBER macro
/openjdk9/jdk/test/java/util/zip/
H A D3GBZipFiles.sh83 huge-*) filesize_="$hugeSize" ;;
111 huge-*) size="$hugeSize" ;;
132 testJarFile "MostlyEmpty" "DEFLATED" "tiny-1 huge-1 tiny-2 huge-2 tiny-3"
133 testJarFile "MostlyEmpty" "STORED" "tiny-1 huge-1 tiny-2"
134 testJarFile "SlightlyCompressible" "DEFLATED" "tiny-1 huge-1 tiny-2"
/openjdk9/jdk/test/java/lang/StrictMath/
H A DFdlibmTranslit.java321 private static final double huge = 1.0e+300; field in class:FdlibmTranslit.Exp
352 if(x > o_threshold) return huge*huge; /* overflow */
369 if(huge+x>one) return one+x;/* trigger inexact */
/openjdk9/jdk/src/java.base/share/classes/java/lang/
H A DFdLibm.java46 * {@code huge * huge} where {@code huge} was a large constant that
50 * return huge * huge}, this port will use {@code return INFINITY}.
414 // |y| is huge
651 private static final double huge = 1.0e+300; field in class:FdLibm.Exp
691 return huge * huge; /* overflow */
710 if (huge
[all...]

Completed in 64 milliseconds