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

/openjdk9/jdk/src/java.base/share/native/libfdlibm/
H A De_atan2.c60 tiny = 1.0e-300, variable
93 case 2: return pi+tiny;/* atan(+0,-anything) = pi */
94 case 3: return -pi-tiny;/* atan(-0,-anything) =-pi */
98 if((ix|lx)==0) return (hy<0)? -pi_o_2-tiny: pi_o_2+tiny;
104 case 0: return pi_o_4+tiny;/* atan(+INF,+INF) */
105 case 1: return -pi_o_4-tiny;/* atan(-INF,+INF) */
106 case 2: return 3.0*pi_o_4+tiny;/*atan(+INF,-INF)*/
107 case 3: return -3.0*pi_o_4-tiny;/*atan(-INF,-INF)*/
113 case 2: return pi+tiny ; /* ata
[all...]
H A Ds_tanh.c53 static const double one=1.0, two=2.0, tiny = 1.0e-300; variable
55 static double one=1.0, two=2.0, tiny = 1.0e-300; variable
91 z = one - tiny; /* raised inexact flag */
H A Ds_scalbn.c43 tiny = 1.0e-300; variable
61 if (n< -50000) return tiny*x; /*underflow*/
71 else return tiny*copysign(tiny,x); /*underflow*/
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.c130 tiny = 1.0e-300, variable
169 if(x+tiny<0.0) /* raise inexact */
170 return tiny-one; /* return -1 */
/openjdk9/hotspot/src/share/vm/runtime/
H A DsharedRuntimeMath.hpp99 tiny = 1.0e-300; variable
111 if (n< -50000) return tiny*x; /*underflow*/
123 else return tiny*copysignA(tiny,x); /*underflow*/
H A DsharedRuntimeTrans.cpp539 if(ix<=0x3fefffff) return (hy<0)? hugeX*hugeX:tiny*tiny;
540 if(ix>=0x3ff00000) return (hy>0)? hugeX*hugeX:tiny*tiny;
543 if(ix<0x3fefffff) return (hy<0)? s*hugeX*hugeX:s*tiny*tiny;
544 if(ix>0x3ff00000) return (hy>0)? s*hugeX*hugeX:s*tiny*tiny;
545 /* now |1-x| is tiny <= 2**-20, suffice to compute
620 return s*tiny*tin
[all...]
/openjdk9/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"
/openjdk9/hotspot/src/cpu/aarch64/vm/
H A DmacroAssembler_aarch64.cpp5202 Label loop, around, tiny;
5206 br(LO, tiny);
5221 bind(tiny);

Completed in 112 milliseconds