Searched defs:zero (Results 1 - 25 of 38) sorted by relevance

12

/bionic/libm/upstream-freebsd/lib/msun/src/
H A De_atanh.c42 static const double zero = 0.0; variable
55 return x/zero;
56 if(ix<0x3e300000&&(huge+x)>zero) return x; /* x<2**-28 */
H A De_atanhf.c24 static const float zero = 0.0; variable
36 return x/zero;
37 if(ix<0x31800000&&(huge+x)>zero) return x; /* x<2**-28 */
H A De_atanhl.c52 static const double zero = 0.0; variable
64 RETURNI(fabsl(x) == 1 ? x / zero : (x - x) / (x - x));
65 if (ix < BIAS + EXP_TINY && (huge + x) > zero)
H A De_remainder.c31 static const double zero = 0.0; variable
56 if (((hx-hp)|(lx-lp))==0) return zero*x;
H A De_remainderf.c22 static const float zero = 0.0; variable
46 if ((hx-hp)==0) return zero*x;
H A Ds_modfl.c55 static const long double zero[] = { 0.0L, -0.0L }; variable
67 *iptr = zero[ux.bits.sign];
73 return (zero[ux.bits.sign]);
87 return (zero[ux.bits.sign]);
92 return (zero[ux.bits.sign]);
H A Ds_rintl.c53 static const float zero[2] = { 0.0, -0.0 }; variable
88 return (zero[sign]);
H A Ds_truncl.c39 static const float zero[] = { 0.0, -0.0 }; variable
50 u.e = zero[u.bits.sign];
H A De_atan2f.c25 zero = 0.0, variable
71 case 0: return zero ; /* atan(+...,+INF) */
72 case 1: return -zero ; /* atan(-...,+INF) */
H A De_log2f.c28 static const float zero = 0.0; variable
43 if (hx<0) return (x-x)/zero; /* log(-#) = NaN */
49 return zero; /* log(1) = +0 */
H A De_atan2.c53 zero = 0.0, variable
100 case 0: return zero ; /* atan(+...,+INF) */
101 case 1: return -zero ; /* atan(-...,+INF) */
H A De_atan2l.c33 zero = 0.0; variable
94 case 0: return zero ; /* atan(+...,+INF) */
95 case 1: return -zero ; /* atan(-...,+INF) */
H A De_log10f.c30 static const float zero = 0.0; variable
45 if (hx<0) return (x-x)/zero; /* log(-#) = NaN */
51 return zero; /* log(1) = +0 */
H A De_log2.c38 static const double zero = 0.0; variable
54 if (hx<0) return (x-x)/zero; /* log(-#) = NaN */
60 return zero; /* log(1) = +0 */
H A De_jnf.c26 static const float zero = 0.0000000000e+00; variable
52 b = zero;
68 b = zero;
118 for(t=zero, i = 2*(n+k); i>=m; i -= 2) t = one/(i/x-t);
127 * likely underflow to zero
177 if(ix==0) return -one/zero;
178 if(hx<0) return zero/zero;
186 if(ix==0x7f800000) return zero;
H A De_log.c85 static const double zero = 0.0; variable
101 if (hx<0) return (x-x)/zero; /* log(-#) = NaN */
113 if(f==zero) {
115 return zero;
H A De_log10.c38 static const double zero = 0.0; variable
54 if (hx<0) return (x-x)/zero; /* log(-#) = NaN */
60 return zero; /* log(1) = +0 */
H A De_logf.c32 static const float zero = 0.0; variable
47 if (ix<0) return (x-x)/zero; /* log(-#) = NaN */
59 if(f==zero) {
61 return zero;
H A De_rem_pio2.c41 zero = 0.00000000000000000000e+00, /* 0x00000000, 0x00000000 */ variable
182 while(tx[nx-1]==zero) nx--; /* skip zero term */
H A Ds_log1p.c98 static const double zero = 0.0; variable
117 if(two54+x>zero /* raise inexact */
159 if(f==zero) {
161 return zero;
H A Ds_log1pf.c36 static const float zero = 0.0; variable
55 if(two25+x>zero /* raise inexact */
98 if(f==zero) {
100 return zero;
H A De_jn.c23 * y0(0)=y1(0)=yn(n,0) = -inf with division by zero signal;
51 static const double zero = 0.00000000000000000000e+00; variable
77 b = zero;
116 b = zero;
166 for(t=zero, i = 2*(n+k); i>=m; i -= 2) t = one/(i/x-t);
175 * likely underflow to zero
225 if((ix|lx)==0) return -one/zero;
226 if(hx<0) return zero/zero;
234 if(ix==0x7ff00000) return zero;
[all...]
H A Dk_rem_pio2.c288 zero = 0.0, variable
310 for(i=0;i<=m;i++,j++) f[i] = (j<0)? zero : (double) ipio2[j];
365 if(z==zero) {
381 /* chop off zero terms */
/bionic/tests/
H A Dfenv_test.cpp34 volatile float zero = 0.0f; local
35 volatile float result __attribute__((unused)) = 123.0f / zero;
67 // Dividing by zero sets FE_DIVBYZERO.
/bionic/libm/upstream-freebsd/lib/msun/ld128/
H A De_rem_pio2l.h49 zero = 0.00000000000000000000e+00, /* 0x00000000, 0x00000000 */ variable
133 while(tx[nx-1]==zero) nx--; /* skip zero term */

Completed in 1063 milliseconds

12