Searched defs:huge (Results 1 - 14 of 14) sorted by relevance
| /openjdk7/jdk/src/share/native/java/lang/fdlibm/src/ |
| H A D | e_atanh.c | 48 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 D | e_cosh.c | 41 * 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 D | s_asinh.c | 47 huge= 1.00000000000000000000e+300; variable 62 if(huge+x>one) return x; /* return x inexact except 0 */
|
| H A D | s_ceil.c | 39 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 D | s_floor.c | 39 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 D | s_scalbn.c | 43 huge = 1.0e+300, variable 66 if (k > 0x7fe) return huge*copysign(huge,x); /* overflow */ 71 return huge*copysign(huge,x); /*overflow*/
|
| H A D | s_atan.c | 95 huge = 1.0e300; variable 117 if(huge+x>one) return x; /* raise inexact */
|
| H A D | e_asin.c | 66 huge = 1.000e+300, variable 100 if(huge+x>one) return x;/* return x with inexact if x!=0*/
|
| H A D | e_exp.c | 99 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 D | s_expm1.c | 130 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 D | e_j0.c | 85 huge = 1e300, variable 137 if(huge+x>one) { /* raise inexact if x != 0 */
|
| H A D | e_j1.c | 85 huge = 1e300, variable 139 if(huge+x>one) return 0.5*x;/* inexact if x!=0 necessary */
|
| H A D | e_pow.c | 86 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...] |
| /openjdk7/jdk/src/share/native/java/lang/fdlibm/include/ |
| H A D | jfdlibm.h | 37 #define huge HUGE_NUMBER macro
|
Completed in 1334 milliseconds