Home
last modified time | relevance | path

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

/bionic/libm/upstream-freebsd/lib/msun/src/
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)); in tanh()
67 z = one - two/(t+two); in tanh()
69 t = expm1(-two*fabs(x)); in tanh()
70 z= -t/(t+two); in tanh()
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)); in tanhf()
45 z = one - two/(t+two); in tanhf()
47 t = expm1f(-two*fabsf(x)); in tanhf()
48 z= -t/(t+two); in tanhf()
De_jnf.c23 two = 2.0000000000e+00, /* 0x40000000 */ variable
130 v = two/x; in __ieee754_jnf()
138 di -= two; in __ieee754_jnf()
146 di -= two; in __ieee754_jnf()
De_jn.c48 two = 2.00000000000000000000e+00, /* 0x40000000, 0x00000000 */ variable
178 v = two/x; in __ieee754_jn()
186 di -= two; in __ieee754_jn()
194 di -= two; in __ieee754_jn()
Ds_erf.c118 two = 2.00000000000000000000e+00, /* 0x40000000, 0x00000000 */ variable
287 if(hx<0&&ix>=0x40180000) return two-tiny;/* x < -6 */ in erfc()
297 if(hx>0) return r/x; else return two-r/x; in erfc()
299 if(hx>0) return tiny*tiny; else return two-tiny; in erfc()
Ds_erff.c26 two = 2.0000000000e+00, /* 0x40000000 */ variable
196 if(hx<0&&ix>=0x40c00000) return two-tiny;/* x < -6 */ in erfcf()
206 if(hx>0) return r/x; else return two-r/x; in erfcf()
208 if(hx>0) return tiny*tiny; else return two-tiny; in erfcf()
De_powf.c28 two = 2.0, variable
242 r = (z*t1)/(t1-two)-(w+z*w); in __ieee754_powf()
De_pow.c69 two = 2.0, variable
299 r = (z*t1)/(t1-two)-(w+z*w); in __ieee754_pow()
/bionic/libc/arch-arm/bionic/
Dclone.S38 # The sys_clone system call only takes two arguments: 'flags' and 'child_stack'.
/bionic/libstdc++/include/
Dnew26 // these next two are not really required, since exceptions are off
/bionic/libc/include/
Dpthread.h150 int pthread_equal(pthread_t one, pthread_t two);