Searched defs:two (Results 1 - 9 of 9) sorted by relevance

/bionic/libm/src/
H A Ds_tanh.c44 static const double one=1.0, two=2.0, tiny = 1.0e-300; variable
67 t = expm1(two*fabs(x));
68 z = one - two/(t+two);
70 t = expm1(-two*fabs(x));
71 z= -t/(t+two);
H A Ds_tanhf.c23 static const float one=1.0, two=2.0, tiny = 1.0e-30, huge = 1.0e30; variable
45 t = expm1f(two*fabsf(x));
46 z = one - two/(t+two);
48 t = expm1f(-two*fabsf(x));
49 z= -t/(t+two);
H A De_jn.c49 two = 2.00000000000000000000e+00, /* 0x40000000, 0x00000000 */ variable
179 v = two/x;
187 di -= two;
195 di -= two;
H A De_jnf.c25 two = 2.0000000000e+00, /* 0x40000000 */ variable
132 v = two/x;
140 di -= two;
148 di -= two;
H A De_pow.c20 * 1. Compute and return log2(x) in two pieces:
70 two = 2.0, variable
297 r = (z*t1)/(t1-two)-(w+z*w);
H A De_powf.c29 two = 2.0, variable
240 r = (z*t1)/(t1-two)-(w+z*w);
H A Ds_erf.c119 two = 2.00000000000000000000e+00, /* 0x40000000, 0x00000000 */ variable
288 if(hx<0&&ix>=0x40180000) return two-tiny;/* x < -6 */
298 if(hx>0) return r/x; else return two-r/x;
300 if(hx>0) return tiny*tiny; else return two-tiny;
H A Ds_erff.c27 two = 2.0000000000e+00, /* 0x40000000 */ variable
197 if(hx<0&&ix>=0x40c00000) return two-tiny;/* x < -6 */
207 if(hx>0) return r/x; else return two-r/x;
209 if(hx>0) return tiny*tiny; else return two-tiny;
/bionic/libc/bionic/
H A Dpthread.c717 int pthread_equal(pthread_t one, pthread_t two) argument
719 return (one == two ? 1 : 0);
2102 * bitmap for the signal set, or more exactly an array of two-32-bit

Completed in 88 milliseconds