Searched refs:tiny (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/
H A De_atan2.c61 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 Ds_tanh.c54 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 Ds_scalbn.c44 tiny = 1.0e-300; variable
62 if (n< -50000) return tiny*x; /*underflow*/
72 else return tiny*copysign(tiny,x); /*underflow*/
H A De_pow.c87 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 De_sqrt.c83 * 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 Ds_expm1.c131 tiny = 1.0e-300, variable
170 if(x+tiny<0.0) /* raise inexact */
171 return tiny-one; /* return -1 */
H A Ds_erf.c86 * = 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 D3GBZipFiles.sh84 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 DsharedRuntimeTrans.cpp86 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 DsharedRuntimeTrig.cpp95 tiny = 1.0e-300; variable
107 if (n< -50000) return tiny*x; /*underflow*/
117 else return tiny*copysignA(tiny,x); /*underflow*/

Completed in 109 milliseconds