Searched refs:tiny (Results 1 - 10 of 10) sorted by relevance
/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/ |
H A D | e_atan2.c | 61 tiny = 1.0e-300, variable 94 case 2: return pi+tiny;/* atan(+0,-anything) = pi */ 95 case 3: return -pi-tiny;/* atan(-0,-anything) =-pi */ 99 if((ix|lx)==0) return (hy<0)? -pi_o_2-tiny: pi_o_2+tiny; 105 case 0: return pi_o_4+tiny;/* atan(+INF,+INF) */ 106 case 1: return -pi_o_4-tiny;/* atan(-INF,+INF) */ 107 case 2: return 3.0*pi_o_4+tiny;/*atan(+INF,-INF)*/ 108 case 3: return -3.0*pi_o_4-tiny;/*atan(-INF,-INF)*/ 114 case 2: return pi+tiny ; /* ata [all...] |
H A D | s_tanh.c | 54 static const double one=1.0, two=2.0, tiny = 1.0e-300; variable 56 static double one=1.0, two=2.0, tiny = 1.0e-300; variable 92 z = one - tiny; /* raised inexact flag */
|
H A D | s_scalbn.c | 44 tiny = 1.0e-300; variable 62 if (n< -50000) return tiny*x; /*underflow*/ 72 else return tiny*copysign(tiny,x); /*underflow*/
|
H A D | e_pow.c | 87 tiny = 1.0e-300, variable 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:s*tiny*tiny; 210 /* now |1-x| is tiny < [all...] |
H A D | e_sqrt.c | 83 * huge + tiny is equal to huge, and whether huge - tiny is 84 * equal to huge for some floating point number "huge" and "tiny". 99 static const double one = 1.0, tiny=1.0e-300; variable 101 static double one = 1.0, tiny=1.0e-300; variable 187 z = one-tiny; /* trigger inexact flag */ 189 z = one+tiny;
|
H A D | s_expm1.c | 131 tiny = 1.0e-300, variable 170 if(x+tiny<0.0) /* raise inexact */ 171 return tiny-one; /* return -1 */
|
H A D | s_erf.c | 86 * = 2.0 - tiny (if x <= -6) 88 * erf(x) = sign(x)*(1.0 - tiny) 111 * erf(x) = sign(x) *(1 - tiny) (raise inexact) 112 * erfc(x) = tiny*tiny (raise underflow) if x > 0 113 * = 2 - tiny if x<0 129 tiny = 1e-300, variable 238 if(hx>=0) return one-tiny; else return tiny-one; 309 if(hx<0&&ix>=0x40180000) return two-tiny;/* [all...] |
/openjdk7/jdk/test/java/util/zip/ |
H A D | 3GBZipFiles.sh | 84 tiny-*) filesize_="$tinySize" ;; 112 tiny-*) size="$tinySize" ;; 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/hotspot/src/share/vm/runtime/ |
H A D | sharedRuntimeTrans.cpp | 86 tiny = 1.0e-300; variable 98 if (n< -50000) return tiny*x; /*underflow*/ 108 else return tiny*copysign(tiny,x); /*underflow*/ 605 if(ix<=0x3fefffff) return (hy<0)? hugeX*hugeX:tiny*tiny; 606 if(ix>=0x3ff00000) return (hy>0)? hugeX*hugeX:tiny*tiny; 609 if(ix<0x3fefffff) return (hy<0)? s*hugeX*hugeX:s*tiny*tiny; [all...] |
H A D | sharedRuntimeTrig.cpp | 95 tiny = 1.0e-300; variable 107 if (n< -50000) return tiny*x; /*underflow*/ 117 else return tiny*copysignA(tiny,x); /*underflow*/
|
Completed in 65 milliseconds