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

12

/bionic/libm/src/
H A De_atanh.c41 static const double zero = 0.0; variable
54 return x/zero;
55 if(ix<0x3e300000&&(huge+x)>zero) return x; /* x<2**-28 */
H A De_atanhf.c25 static const float zero = 0.0; variable
37 return x/zero;
38 if(ix<0x31800000&&(huge+x)>zero) return x; /* x<2**-28 */
H A De_remainderf.c23 static const float zero = 0.0; variable
47 if ((hx-hp)==0) return zero*x;
H A De_log10.c60 static const double zero = 0.0; variable
74 return -two54/zero; /* log(+-0)=-inf */
75 if (hx<0) return (x-x)/zero; /* log(-#) = NaN */
H A De_log10f.c29 static const float zero = 0.0; variable
42 return -two25/zero; /* log(+-0)=-inf */
43 if (hx<0) return (x-x)/zero; /* log(-#) = NaN */
H A De_remainder.c30 static const double zero = 0.0; variable
55 if (((hx-hp)|(lx-lp))==0) return zero*x;
H A De_atan2.c51 zero = 0.0, variable
97 case 0: return zero ; /* atan(+...,+INF) */
98 case 1: return -zero ; /* atan(-...,+INF) */
H A De_atan2f.c25 zero = 0.0, variable
70 case 0: return zero ; /* atan(+...,+INF) */
71 case 1: return -zero ; /* atan(-...,+INF) */
H A De_log.c84 static const double zero = 0.0; variable
98 return -two54/zero; /* log(+-0)=-inf */
99 if (hx<0) return (x-x)/zero; /* log(-#) = NaN */
111 if(f==zero) if(k==0) return zero; else {dk=(double)k;
H A De_logf.c33 static const float zero = 0.0; variable
46 return -two25/zero; /* log(+-0)=-inf */
47 if (ix<0) return (x-x)/zero; /* log(-#) = NaN */
59 if(f==zero) if(k==0) return zero; else {dk=(float)k;
H A De_rem_pio2f.c55 zero = 0.00000000000000000000e+00, /* 0x00000000, 0x00000000 */ variable
H A Ds_log1p.c97 static const double zero = 0.0; variable
111 if(x==-1.0) return -two54/zero; /* log1p(-1)=+inf */
115 if(two54+x>zero /* raise inexact */
157 if(f==zero) if(k==0) return zero;
H A Ds_log1pf.c35 static const float zero = 0.0; variable
49 if(x==(float)-1.0) return -two25/zero; /* log1p(-1)=+inf */
53 if(two25+x>zero /* raise inexact */
96 if(f==zero) if(k==0) return zero;
H A De_jn.c24 * y0(0)=y1(0)=yn(n,0) = -inf with division by zero signal;
52 static const double zero = 0.00000000000000000000e+00; variable
78 b = zero;
117 b = zero;
167 for(t=zero, i = 2*(n+k); i>=m; i -= 2) t = one/(i/x-t);
176 * likely underflow to zero
221 if((ix|lx)==0) return -one/zero;
222 if(hx<0) return zero/zero;
230 if(ix==0x7ff00000) return zero;
[all...]
H A De_jnf.c28 static const float zero = 0.0000000000e+00; variable
54 b = zero;
70 b = zero;
120 for(t=zero, i = 2*(n+k); i>=m; i -= 2) t = one/(i/x-t);
129 * likely underflow to zero
174 if(ix==0) return -one/zero;
175 if(hx<0) return zero/zero;
183 if(ix==0x7f800000) return zero;
H A De_rem_pio2.c65 zero = 0.00000000000000000000e+00, /* 0x00000000, 0x00000000 */ variable
164 while(tx[nx-1]==zero) nx--; /* skip zero term */
H A Dk_rem_pio2.c151 zero = 0.0, variable
172 for(i=0;i<=m;i++,j++) f[i] = (j<0)? zero : (double) ipio2[j];
227 if(z==zero) {
243 /* chop off zero terms */
H A Dk_rem_pio2f.c43 zero = 0.0, variable
64 for(i=0;i<=m;i++,j++) f[i] = (j<0)? zero : (float) ipio2[j];
119 if(z==zero) {
135 /* chop off zero terms */
H A De_j0.c19 * Bessel function of the first and second kinds of order zero.
83 static const double zero = 0.0; variable
102 if ((s*c)<zero) cc = z/ss;
156 if((ix|lx)==0) return -one/zero;
157 if(hx<0) return zero/zero;
180 if ((s*c)<zero) cc = z/ss;
H A De_j0f.c41 static const float zero = 0.0; variable
60 if ((s*c)<zero) cc = z/ss;
114 if(ix==0) return -one/zero;
115 if(hx<0) return zero/zero;
138 if ((s*c)<zero) cc = z/ss;
H A De_j1.c19 * Bessel function of the first and second kinds of order zero.
84 static const double zero = 0.0; variable
103 if ((s*c)>zero) cc = z/ss;
153 if((ix|lx)==0) return -one/zero;
154 if(hx<0) return zero/zero;
162 if ((s*c)>zero) cc = z/ss;
H A De_j1f.c42 static const float zero = 0.0; variable
61 if ((s*c)>zero) cc = z/ss;
111 if(ix==0) return -one/zero;
112 if(hx<0) return zero/zero;
120 if ((s*c)>zero) cc = z/ss;
/bionic/libc/kernel/arch-mips/asm/
H A Dregdef.h24 #define zero $0 macro
69 #define zero $0 macro
/bionic/libc/tzcode/
H A Dstrftime.c181 char *dash, char *zero) {
190 return zero;
180 getformat(int modifier, char *normal, char *underscore, char *dash, char *zero) argument
/bionic/libm/bsdsrc/
H A Db_tgamma.c126 static const double zero = 0., one = 1.0, tiny = 1e-300; variable
136 return(one/zero);
285 return (one/zero);

Completed in 158 milliseconds

12