Searched refs:two (Results 1 - 11 of 11) sorted by relevance

/bionic/libm/upstream-freebsd/lib/msun/src/
H A Ds_tanh.c43 static const double one = 1.0, two = 2.0, tiny = 1.0e-300, huge = 1.0e300; variable
66 t = expm1(two*fabs(x));
67 z = one - two/(t+two);
69 t = expm1(-two*fabs(x));
70 z= -t/(t+two);
H A Ds_tanhf.c22 static const float one=1.0, two=2.0, tiny = 1.0e-30, huge = 1.0e30; variable
44 t = expm1f(two*fabsf(x));
45 z = one - two/(t+two);
47 t = expm1f(-two*fabsf(x));
48 z= -t/(t+two);
H A De_jnf.c23 two = 2.0000000000e+00, /* 0x40000000 */ variable
130 v = two/x;
138 di -= two;
146 di -= two;
H A De_jn.c48 two = 2.00000000000000000000e+00, /* 0x40000000, 0x00000000 */ variable
178 v = two/x;
186 di -= two;
194 di -= two;
H A Ds_erff.c26 two = 2.0000000000e+00, /* 0x40000000 */ variable
172 if(hx<0&&ix>=0x40a00000) return two-tiny;/* x < -5 */
178 if(hx>0) return r/x; else return two-r/x;
180 if(hx>0) return tiny*tiny; else return two-tiny;
H A Ds_erf.c118 two = 2.00000000000000000000e+00, /* 0x40000000, 0x00000000 */ variable
287 if(hx<0&&ix>=0x40180000) return two-tiny;/* x < -6 */
297 if(hx>0) return r/x; else return two-r/x;
299 if(hx>0) return tiny*tiny; else return two-tiny;
H A De_pow.c19 * 1. Compute and return log2(x) in two pieces:
69 two = 2.0, variable
299 r = (z*t1)/(t1-two)-(w+z*w);
H A De_powf.c28 two = 2.0, variable
242 r = (z*t1)/(t1-two)-(w+z*w);
/bionic/tests/
H A Dsearch_test.cpp150 q_node two(2);
156 insque(&two, &one);
165 for (q_node* q = &two; q != NULL; q = q->prev) {
178 remque(&two);
190 insque(&two, &one);
205 remque(&two);
/bionic/libc/
H A Dcrt.mk79 # The following two are installed to device
/bionic/libc/bionic/
H A Dsystem_properties.cpp160 // This environment variable consistes of two decimal integer
353 static int cmp_prop_name(const char *one, uint8_t one_len, const char *two, argument
361 return strncmp(one, two, one_len);

Completed in 134 milliseconds