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

/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/
H A Ds_ceil.c39 static const double huge = 1.0e300; variable
41 static double huge = 1.0e300; variable
58 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_floor.c39 static const double huge = 1.0e300; variable
41 static double huge = 1.0e300; variable
58 if(huge+x>0.0) {/* return 0*sign(x) if |x|<1 */
66 if(huge+x>0.0) { /* raise inexact flag */
77 if(huge+x>0.0) { /* raise inexact flag */
H A Ds_scalbn.c43 huge = 1.0e+300, variable
66 if (k > 0x7fe) return huge*copysign(huge,x); /* overflow */
71 return huge*copysign(huge,x); /*overflow*/
H A De_atanh.c48 static const double one = 1.0, huge = 1e300; variable
50 static double one = 1.0, huge = 1e300; variable
72 if(ix<0x3e300000&&(huge+x)>zero) return x; /* x<2**-28 */
H A De_cosh.c41 * ln2ovft < x : cosh(x) := huge*huge (overflow)
51 static const double one = 1.0, half=0.5, huge = 1.0e300; variable
53 static double one = 1.0, half=0.5, huge = 1.0e300; variable
101 return huge*huge;
H A Ds_asinh.c47 huge= 1.00000000000000000000e+300; variable
62 if(huge+x>one) return x; /* return x inexact except 0 */
H A De_exp.c99 huge = 1.0e+300, variable
137 if(x > o_threshold) return huge*huge; /* overflow */
154 if(huge+x>one) return one+x;/* trigger inexact */
H A Ds_expm1.c130 huge = 1.0e+300, variable
159 /* filter out huge and non-finite argument */
167 if(x > o_threshold) return huge*huge; /* overflow */
192 t = huge+x; /* return x with inexact flags when x!=0 */
193 return x - (t-(huge+x));
H A De_pow.c86 huge = 1.0e300, variable
201 /* |y| is huge */
204 if(ix<=0x3fefffff) return (hy<0)? huge*huge:tiny*tiny;
205 if(ix>=0x3ff00000) return (hy>0)? huge*huge:tiny*tiny;
208 if(ix<0x3fefffff) return (hy<0)? s*huge*huge:s*tiny*tiny;
209 if(ix>0x3ff00000) return (hy>0)? s*huge*huge
[all...]
H A Ds_atan.c95 huge = 1.0e300; variable
117 if(huge+x>one) return x; /* raise inexact */
H A De_asin.c66 huge = 1.000e+300, variable
100 if(huge+x>one) return x;/* return x with inexact if x!=0*/
H A De_j0.c85 huge = 1e300, variable
137 if(huge+x>one) { /* raise inexact if x != 0 */
H A De_j1.c85 huge = 1e300, variable
139 if(huge+x>one) return 0.5*x;/* inexact if x!=0 necessary */
/openjdk7/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"
/openjdk7/jdk/src/share/native/java/lang/fdlibm/include/
H A Djfdlibm.h37 #define huge HUGE_NUMBER macro
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngmem.c219 png_byte huge * hptr;
294 hptr = (png_byte huge *)table;
297 hptr = (png_byte huge *)((long)(hptr) & 0xfffffff0L);

Completed in 50 milliseconds