Searched refs:huge (Results 1 - 25 of 36) sorted by relevance

12

/bionic/libm/src/
H A Ds_scalbnf.c28 huge = 1.0e+30, variable
46 if (k > 0xfe) return huge*copysignf(huge,x); /* overflow */
51 return huge*copysignf(huge,x); /*overflow*/
H A Ds_ceilf.c23 static const float huge = 1.0e30; variable
35 if(huge+x>(float)0.0) {/* return 0*sign(x) if |x|<1 */
42 if(huge+x>(float)0.0) { /* raise inexact flag */
H A Ds_floorf.c32 static const float huge = 1.0e30; variable
43 if(huge+x>(float)0.0) {/* return 0*sign(x) if |x|<1 */
51 if(huge+x>(float)0.0) { /* raise inexact flag */
H A Ds_truncf.c28 static const float huge = 1.0e30F; variable
39 if(huge+x>0.0F) /* |x|<1, so return 0*sign(x) */
44 if(huge+x>0.0F) /* raise inexact flag */
H A Ds_trunc.c28 static const double huge = 1.0e300; variable
39 if(huge+x>0.0) {/* |x|<1, so return 0*sign(x) */
46 if(huge+x>0.0) { /* raise inexact flag */
56 if(huge+x>0.0) /* raise inexact flag */
H A Ds_truncl.c39 static const long double huge = 1.0e300; variable
49 if (huge + x > 0.0)
55 if (huge + x > 0.0) { /* raise inexact flag */
64 if (huge + x > 0.0) /* raise inexact flag */
H A Ds_scalbn.c33 huge = 1.0e+300, variable
51 if (k > 0x7fe) return huge*copysign(huge,x); /* overflow */
56 return huge*copysign(huge,x); /*overflow*/
H A Ds_scalbnl.c41 huge = 0x1p16000L, variable
59 if (k >= 0x7fff) return huge*copysignl(huge,x); /* overflow */
64 return huge*copysign(huge,x); /*overflow*/
H A De_cosh.c32 * ln2ovft < x : cosh(x) := huge*huge (overflow)
42 static const double one = 1.0, half=0.5, huge = 1.0e300; variable
85 return huge*huge;
H A De_coshf.c23 static const float one = 1.0, half=0.5, huge = 1.0e30; variable
62 return huge*huge;
H A Ds_ceil.c29 static const double huge = 1.0e300; variable
40 if(huge+x>0.0) {/* return 0*sign(x) if |x|<1 */
47 if(huge+x>0.0) { /* raise inexact flag */
58 if(huge+x>0.0) { /* raise inexact flag */
H A Ds_floor.c29 static const double huge = 1.0e300; variable
40 if(huge+x>0.0) {/* return 0*sign(x) if |x|<1 */
48 if(huge+x>0.0) { /* raise inexact flag */
59 if(huge+x>0.0) { /* raise inexact flag */
H A De_atanh.c40 static const double one = 1.0, huge = 1e300; variable
55 if(ix<0x3e300000&&(huge+x)>zero) return x; /* x<2**-28 */
H A De_atanhf.c23 static const float one = 1.0, huge = 1e30; variable
38 if(ix<0x31800000&&(huge+x)>zero) return x; /* x<2**-28 */
H A Ds_asinh.c34 huge= 1.00000000000000000000e+300; variable
45 if(huge+x>one) return x; /* return x inexact except 0 */
H A Ds_asinhf.c26 huge= 1.0000000000e+30; variable
37 if(huge+x>one) return x; /* return x inexact except 0 */
H A Ds_tanhf.c23 static const float one=1.0, two=2.0, tiny = 1.0e-30, huge = 1.0e30; variable
42 if(huge+x>one) return x; /* tanh(tiny) = tiny with inexact */
H A De_exp.c86 huge = 1.0e+300, variable
122 if(x > o_threshold) return huge*huge; /* overflow */
139 if(huge+x>one) return one+x;/* trigger inexact */
H A De_expf.c26 huge = 1.0e+30, variable
58 if(x > o_threshold) return huge*huge; /* overflow */
75 if(huge+x>one) return one+x;/* trigger inexact */
H A Ds_ceill.c53 static const long double huge = 1.0e300; variable
63 if (huge + x > 0.0)
79 if (huge + x > 0.0) { /* raise inexact flag */
98 if (huge + x > 0.0) /* raise inexact flag */
H A Ds_floorl.c53 static const long double huge = 1.0e300; variable
63 if (huge + x > 0.0)
79 if (huge + x > 0.0) { /* raise inexact flag */
98 if (huge + x > 0.0) /* raise inexact flag */
H A De_pow.c72 huge = 1.0e300, variable
186 /* |y| is huge */
189 if(ix<=0x3fefffff) return (hy<0)? huge*huge:tiny*tiny;
190 if(ix>=0x3ff00000) return (hy>0)? huge*huge:tiny*tiny;
193 if(ix<0x3fefffff) return (hy<0)? s*huge*huge:s*tiny*tiny;
194 if(ix>0x3ff00000) return (hy>0)? s*huge*huge
[all...]
H A Ds_exp2f.c37 huge = 0x1p100f, variable
109 return (huge * huge); /* overflow */
H A Ds_expm1.c117 huge = 1.0e+300, variable
142 /* filter out huge and non-finite argument */
152 if(x > o_threshold) return huge*huge; /* overflow */
177 t = huge+x; /* return x with inexact flags when x!=0 */
178 return x - (t-(huge+x));
/bionic/libc/bionic/
H A Dldexp.c83 huge = 1.0e+300, variable
111 if (k > 0x7fe) return huge*_copysign(huge,x); /* overflow */
116 return huge*_copysign(huge,x); /*overflow*/

Completed in 2136 milliseconds

12