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

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Math/
H A De_atan2.c54 tiny = 1.0e-300, variable
83 case 2: return pi+tiny;/* atan(+0,-anything) = pi */
84 case 3: return -pi-tiny;/* atan(-0,-anything) =-pi */
88 if((ix|lx)==0) return (hy<0)? -pi_o_2-tiny: pi_o_2+tiny;
94 case 0: return pi_o_4+tiny;/* atan(+INF,+INF) */
95 case 1: return -pi_o_4-tiny;/* atan(-INF,+INF) */
96 case 2: return 3.0*pi_o_4+tiny;/*atan(+INF,-INF)*/
97 case 3: return -3.0*pi_o_4-tiny;/*atan(-INF,-INF)*/
103 case 2: return pi+tiny ; /* ata
[all...]
H A Ds_scalbn.c32 tiny = 1.0e-300; variable
45 if (n< -50000) return tiny*x; /*underflow*/
55 else return tiny*copysign(tiny,x); /*underflow*/
H A Ds_tanh.c45 static const double one=1.0, two=2.0, tiny = 1.0e-300; variable
76 z = one - tiny; /* raised inexact flag */
H A De_pow.c93 tiny = 1.0e-300, variable
208 if(ix<=0x3fefffff) return (hy<0)? huge*huge:tiny*tiny;
209 if(ix>=0x3ff00000) return (hy>0)? huge*huge:tiny*tiny;
212 if(ix<0x3fefffff) return (hy<0)? s*huge*huge:s*tiny*tiny;
213 if(ix>0x3ff00000) return (hy>0)? s*huge*huge:s*tiny*tiny;
214 /* now |1-x| is tiny <
[all...]
H A De_sqrt.c94 * huge + tiny is equal to huge, and whether huge - tiny is
95 * equal to huge for some floating point number "huge" and "tiny".
107 static const double one = 1.0, tiny=1.0e-300; variable
189 z = one-tiny; /* trigger inexact flag */
191 z = one+tiny;
H A Ds_expm1.c124 tiny = 1.0e-300, variable
162 if(x+tiny<0.0) /* raise inexact */
163 return tiny-one; /* return -1 */
/vbox/src/VBox/ValidationKit/testmanager/htdocs/css/
H A Dcommon.css569 .tmform-field-tiny-int input {

Completed in 36 milliseconds