/bionic/libm/src/ |
H A D | e_atanh.c | 41 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 D | e_atanhf.c | 25 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 D | e_remainderf.c | 23 static const float zero = 0.0; variable 47 if ((hx-hp)==0) return zero*x;
|
H A D | e_log10.c | 60 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 D | e_log10f.c | 29 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 D | e_remainder.c | 30 static const double zero = 0.0; variable 55 if (((hx-hp)|(lx-lp))==0) return zero*x;
|
H A D | e_atan2.c | 51 zero = 0.0, variable 97 case 0: return zero ; /* atan(+...,+INF) */ 98 case 1: return -zero ; /* atan(-...,+INF) */
|
H A D | e_atan2f.c | 25 zero = 0.0, variable 70 case 0: return zero ; /* atan(+...,+INF) */ 71 case 1: return -zero ; /* atan(-...,+INF) */
|
H A D | e_log.c | 84 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 D | e_logf.c | 33 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 D | e_rem_pio2f.c | 55 zero = 0.00000000000000000000e+00, /* 0x00000000, 0x00000000 */ variable
|
H A D | s_log1p.c | 97 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 D | s_log1pf.c | 35 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 D | e_jn.c | 24 * 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 D | e_jnf.c | 28 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 D | e_rem_pio2.c | 65 zero = 0.00000000000000000000e+00, /* 0x00000000, 0x00000000 */ variable 164 while(tx[nx-1]==zero) nx--; /* skip zero term */
|
H A D | k_rem_pio2.c | 151 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 D | k_rem_pio2f.c | 43 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 D | e_j0.c | 19 * 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 D | e_j0f.c | 41 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 D | e_j1.c | 19 * 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 D | e_j1f.c | 42 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 D | regdef.h | 24 #define zero $0 macro 69 #define zero $0 macro
|
/bionic/libc/tzcode/ |
H A D | strftime.c | 181 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 D | b_tgamma.c | 126 static const double zero = 0., one = 1.0, tiny = 1e-300; variable 136 return(one/zero); 285 return (one/zero);
|