Searched refs:two (Results 1 – 11 of 11) sorted by relevance
/bionic/libm/upstream-freebsd/lib/msun/src/ |
D | s_tanh.c | 43 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()
|
D | s_tanhf.c | 22 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()
|
D | e_jnf.c | 23 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()
|
D | e_jn.c | 48 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()
|
D | s_erf.c | 118 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()
|
D | s_erff.c | 26 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()
|
D | e_powf.c | 28 two = 2.0, variable 242 r = (z*t1)/(t1-two)-(w+z*w); in __ieee754_powf()
|
D | e_pow.c | 69 two = 2.0, variable 299 r = (z*t1)/(t1-two)-(w+z*w); in __ieee754_pow()
|
/bionic/libc/arch-arm/bionic/ |
D | clone.S | 38 # The sys_clone system call only takes two arguments: 'flags' and 'child_stack'.
|
/bionic/libstdc++/include/ |
D | new | 26 // these next two are not really required, since exceptions are off
|
/bionic/libc/include/ |
D | pthread.h | 150 int pthread_equal(pthread_t one, pthread_t two);
|