/sysdeps/ieee754/ldbl-128ibm/ |
A D | e_asinl.c | 159 t = x * x; in __ieee754_asinl() 171 + rS6) * t in __ieee754_asinl() 172 + rS5) * t in __ieee754_asinl() 182 + sS7) * t in __ieee754_asinl() 183 + sS6) * t in __ieee754_asinl() 192 return t; in __ieee754_asinl() 194 return -t; in __ieee754_asinl() 210 + pS2) * t in __ieee754_asinl() 211 + pS1) * t in __ieee754_asinl() 220 + qS3) * t in __ieee754_asinl() [all …]
|
A D | e_acosl.c | 208 + P7) * t in __ieee754_acosl() 209 + P6) * t in __ieee754_acosl() 210 + P5) * t in __ieee754_acosl() 219 + Q8) * t in __ieee754_acosl() 220 + Q7) * t in __ieee754_acosl() 221 + Q6) * t in __ieee754_acosl() 226 + Q1) * t in __ieee754_acosl() 242 + rS6) * t in __ieee754_acosl() 243 + rS5) * t in __ieee754_acosl() 253 + sS7) * t in __ieee754_acosl() [all …]
|
A D | e_atanhl.c | 44 long double t; in __ieee754_atanhl() local 54 t = fabsl (x); in __ieee754_atanhl() 55 if (t > one) in __ieee754_atanhl() 57 if (t == one) in __ieee754_atanhl() 67 t = x+x; in __ieee754_atanhl() 68 t = 0.5*__log1pl(t+t*x/(one-x)); in __ieee754_atanhl() 70 t = 0.5*__log1pl((x+x)/(one-x)); in __ieee754_atanhl() 71 if(hx>=0) return t; else return -t; in __ieee754_atanhl()
|
A D | e_sinhl.c | 42 long double t,w,h; in __ieee754_sinhl() local 62 t = __expm1l(fabsl(x)); in __ieee754_sinhl() 63 if(ix<0x3ff0000000000000LL) return h*(2.0*t-t*t/(t+one)); in __ieee754_sinhl() 64 w = t/(t+one); in __ieee754_sinhl() 65 return h*(t+w); in __ieee754_sinhl() 74 t = h*w; in __ieee754_sinhl() 75 return t*w; in __ieee754_sinhl()
|
A D | e_coshl.c | 43 long double t,w; in __ieee754_coshl() local 58 t = __expm1l(fabsl(x)); in __ieee754_coshl() 59 w = one+t; in __ieee754_coshl() 60 return one+(t*t)/(w+w); in __ieee754_coshl() 65 t = __ieee754_expl(fabsl(x)); in __ieee754_coshl() 66 return half*t+half/t; in __ieee754_coshl() 75 t = half*w; in __ieee754_coshl() 76 return t*w; in __ieee754_coshl()
|
/sysdeps/ia64/fpu/ |
A D | gen_import_file_list | 36 import $f$t $f$t.s e_$f$t.S 42 import $f$t $f$t.s e_$f$t.S 51 import "log(10)?$t" log$t.s e_log$t.S 52 import tgamma$t tgamma$t.s w_tgamma$t.S 53 import "(hypot|cabs)$t" hypot$t.s e_hypot$t.S 60 import $f$t $f$t.s s_$f$t.S 65 import "(tan|cot)$t" tancot$t.s s_tan$t.S 69 import "(sin|cos)$t" sincos$t.s s_cos$t.S 70 import_c frexp$t frexp$t.c s_frexp$t.c 71 import_c ldexp$t ldexp$t.c s_ldexp$t.c [all …]
|
/sysdeps/ieee754/float128/ |
A D | ieee754_float128.h | 25 # define __FLT_EORDER2(t, a, b) t a; t b; argument 26 # define __FLT_EORDER4(t, a, b, c, d) \ argument 27 t a; t b; t c; t d; 29 t a; t b; t c; t d; t e; t f; 31 t a; t b; t c; t d; t e; t f; t g; 33 # define __FLT_EORDER2(t, a, b) \ argument 34 t b; t a; 35 # define __FLT_EORDER4(t, a, b, c, d) \ argument 36 t d; t c; t b; t a; 38 t f; t e; t d; t c; t b; t a; [all …]
|
/sysdeps/ieee754/ldbl-128/ |
A D | e_asinl.c | 165 t = x * x; in __ieee754_asinl() 177 + rS6) * t in __ieee754_asinl() 178 + rS5) * t in __ieee754_asinl() 188 + sS7) * t in __ieee754_asinl() 189 + sS6) * t in __ieee754_asinl() 198 return t; in __ieee754_asinl() 200 return -t; in __ieee754_asinl() 216 + pS2) * t in __ieee754_asinl() 217 + pS1) * t in __ieee754_asinl() 226 + qS3) * t in __ieee754_asinl() [all …]
|
A D | e_acosl.c | 212 + P7) * t in __ieee754_acosl() 213 + P6) * t in __ieee754_acosl() 214 + P5) * t in __ieee754_acosl() 223 + Q8) * t in __ieee754_acosl() 224 + Q7) * t in __ieee754_acosl() 225 + Q6) * t in __ieee754_acosl() 230 + Q1) * t in __ieee754_acosl() 246 + rS6) * t in __ieee754_acosl() 247 + rS5) * t in __ieee754_acosl() 257 + sS7) * t in __ieee754_acosl() [all …]
|
A D | e_sinhl.c | 66 _Float128 t, w, h; in __ieee754_sinhl() local 95 t = __expm1l (u.value); in __ieee754_sinhl() 97 return h * (2.0 * t - t * t / (t + one)); in __ieee754_sinhl() 98 return h * (t + t / (t + one)); in __ieee754_sinhl() 110 t = h * w; in __ieee754_sinhl() 111 return t * w; in __ieee754_sinhl()
|
A D | e_coshl.c | 64 _Float128 t, w; in __ieee754_coshl() local 83 t = __expm1l (u.value); in __ieee754_coshl() 84 w = one + t; in __ieee754_coshl() 86 return one + (t * t) / (w + w); in __ieee754_coshl() 92 t = __ieee754_expl (u.value); in __ieee754_coshl() 93 return half * t + half / t; in __ieee754_coshl() 104 t = half * w; in __ieee754_coshl() 105 return t * w; in __ieee754_coshl()
|
/sysdeps/powerpc/powerpc64/ |
A D | dl-machine.c | 32 char *t; in _dl_reloc_overflow() local 33 t = stpcpy (buffer, name); in _dl_reloc_overflow() 37 t = stpcpy (t, " reloc at 0x0000000000000000"); in _dl_reloc_overflow() 44 t = stpcpy (t, " for symbol `"); in _dl_reloc_overflow() 45 t = stpcpy (t, strtab + refsym->st_name); in _dl_reloc_overflow() 46 t = stpcpy (t, "'"); in _dl_reloc_overflow() 48 t = stpcpy (t, " out of range"); in _dl_reloc_overflow() 57 char *t; in _dl_error_localentry() local 61 t = stpcpy (buffer, "expected localentry:0 `"); in _dl_error_localentry() 62 t = stpcpy (t, strtab + refsym->st_name); in _dl_error_localentry() [all …]
|
/sysdeps/ieee754/ldbl-96/ |
A D | e_asinl.c | 123 t = x * x; in __ieee754_asinl() 125 t * (pS0 + in __ieee754_asinl() 126 t * (pS1 + t * (pS2 + t * (pS3 + t * (pS4 + t * pS5))))); in __ieee754_asinl() 127 q = qS0 + t * (qS1 + t * (qS2 + t * (qS3 + t * (qS4 + t)))); in __ieee754_asinl() 134 t = w * 0.5; in __ieee754_asinl() 135 p = t * (pS0 + t * (pS1 + t * (pS2 + t * (pS3 + t * (pS4 + t * pS5))))); in __ieee754_asinl() 136 q = qS0 + t * (qS1 + t * (qS2 + t * (qS3 + t * (qS4 + t)))); in __ieee754_asinl() 137 s = sqrtl (t); in __ieee754_asinl() 152 t = pio4_hi - (p - q); in __ieee754_asinl() 155 return t; in __ieee754_asinl() [all …]
|
A D | e_sinhl.c | 48 long double t,w,h; in __ieee754_sinhl() local 66 t = __expm1l(fabsl(x)); in __ieee754_sinhl() 67 if(ix<0x3fff) return h*(2.0*t-t*t/(t+one)); in __ieee754_sinhl() 68 return h*(t+t/(t+one)); in __ieee754_sinhl() 80 t = h*w; in __ieee754_sinhl() 81 return t*w; in __ieee754_sinhl()
|
A D | e_coshl.c | 46 long double t,w; in __ieee754_coshl() local 59 t = __expm1l(fabsl(x)); in __ieee754_coshl() 60 w = one+t; in __ieee754_coshl() 61 return one+(t*t)/(w+w); in __ieee754_coshl() 65 t = __ieee754_expl(fabsl(x)); in __ieee754_coshl() 66 return half*t+half/t; in __ieee754_coshl() 78 t = half*w; in __ieee754_coshl() 79 return t*w; in __ieee754_coshl()
|
A D | e_acoshl.c | 40 long double t; in __ieee754_acoshl() local 53 t=x*x; in __ieee754_acoshl() 54 return __ieee754_logl(2.0*x-one/(x+sqrtl(t-one))); in __ieee754_acoshl() 56 t = x-one; in __ieee754_acoshl() 57 return __log1pl(t+sqrtl(2.0*t+t*t)); in __ieee754_acoshl()
|
/sysdeps/pthread/ |
A D | tst-cond7.c | 51 T *t = (T *) arg; in tf() local 53 if (pthread_mutex_lock (&t->lock) != 0) in tf() 61 if (pthread_cond_signal (&t->cond) != 0) in tf() 67 if (pthread_cond_wait (&t->cond, &t->lock) != 0) in tf() 88 T *t[N]; in do_test() local 93 t[i] = (T *) malloc (sizeof (T)); in do_test() 94 if (t[i] == NULL) in do_test() 115 if (pthread_create (&t[i]->h, NULL, tf, t[i]) != 0) in do_test() 122 if (pthread_cond_wait (&t[i]->cond, &t[i]->lock) != 0) in do_test() 136 if (pthread_cancel (t[i]->h) != 0) in do_test() [all …]
|
A D | tst-abstime.c | 35 struct timespec t = { -2, 0 }; in th() local 37 TEST_COMPARE (pthread_mutex_timedlock (&m1, &t), ETIMEDOUT); in th() 40 TEST_COMPARE (pthread_rwlock_timedrdlock (&rw1, &t), ETIMEDOUT); in th() 41 TEST_COMPARE (pthread_rwlock_timedwrlock (&rw2, &t), ETIMEDOUT); in th() 42 TEST_COMPARE (pthread_rwlock_clockrdlock (&rw1, CLOCK_REALTIME, &t), in th() 44 TEST_COMPARE (pthread_rwlock_clockwrlock (&rw2, CLOCK_REALTIME, &t), in th() 46 TEST_COMPARE (pthread_rwlock_clockrdlock (&rw1, CLOCK_MONOTONIC, &t), in th() 48 TEST_COMPARE (pthread_rwlock_clockwrlock (&rw2, CLOCK_MONOTONIC, &t), in th() 56 struct timespec t = { -2, 0 }; in do_test() local 59 TEST_COMPARE (sem_timedwait (&sem, &t), -1); in do_test() [all …]
|
/sysdeps/ieee754/flt-32/ |
A D | e_asinf.c | 66 float t,w,p,q,c,r,s; in __ieee754_asinf() local 80 t = x*x; in __ieee754_asinf() 81 w = t * (p0 + t * (p1 + t * (p2 + t * (p3 + t * p4)))); in __ieee754_asinf() 87 t = w*0.5f; in __ieee754_asinf() 88 p = t * (p0 + t * (p1 + t * (p2 + t * (p3 + t * p4)))); in __ieee754_asinf() 89 s = sqrtf(t); in __ieee754_asinf() 91 t = pio2_hi-(2.0f*(s+s*p)-pio2_lo); in __ieee754_asinf() 97 c = (t-w*w)/(s+w); in __ieee754_asinf() 101 t = pio4_hi-(p-q); in __ieee754_asinf() 103 if(hx>0) return t; else return -t; in __ieee754_asinf()
|
A D | e_sinhf.c | 27 float t,w,h; in __ieee754_sinhf() local 44 t = __expm1f(fabsf(x)); in __ieee754_sinhf() 45 if(ix<0x3f800000) return h*((float)2.0*t-t*t/(t+one)); in __ieee754_sinhf() 46 return h*(t+t/(t+one)); in __ieee754_sinhf() 55 t = h*w; in __ieee754_sinhf() 56 return t*w; in __ieee754_sinhf()
|
A D | e_coshf.c | 26 float t,w; in __ieee754_coshf() local 37 t = __expm1f(fabsf(x)); in __ieee754_coshf() 38 w = one+t; in __ieee754_coshf() 39 return one+(t*t)/(w+w); in __ieee754_coshf() 43 t = __ieee754_expf(fabsf(x)); in __ieee754_coshf() 44 return half*t+half/t; in __ieee754_coshf() 53 t = half*w; in __ieee754_coshf() 54 return t*w; in __ieee754_coshf()
|
A D | e_acoshf.c | 29 float t; in __ieee754_acoshf() local 42 t=x*x; in __ieee754_acoshf() 43 return __ieee754_logf((float)2.0*x-one/(x+sqrtf(t-one))); in __ieee754_acoshf() 45 t = x-one; in __ieee754_acoshf() 46 return __log1pf(t+sqrtf((float)2.0*t+t*t)); in __ieee754_acoshf()
|
A D | s_isinff.c | 20 int32_t ix,t; in __isinff() local 22 t = ix & 0x7fffffff; in __isinff() 23 t ^= 0x7f800000; in __isinff() 24 t |= -t; in __isinff() 25 return ~(t >> 31) & (ix >> 30); in __isinff()
|
/sysdeps/ieee754/dbl-64/ |
A D | e_sinh.c | 47 double t, w, h; in __ieee754_sinh() local 71 t = __expm1 (fabs (x)); in __ieee754_sinh() 73 return h * (2.0 * t - t * t / (t + one)); in __ieee754_sinh() 74 return h * (t + t / (t + one)); in __ieee754_sinh() 86 t = h * w; in __ieee754_sinh() 87 return t * w; in __ieee754_sinh()
|
A D | e_cosh.c | 43 double t,w; in __ieee754_cosh() local 56 t = __expm1(fabs(x)); in __ieee754_cosh() 57 w = one+t; in __ieee754_cosh() 58 return one+(t*t)/(w+w); in __ieee754_cosh() 62 t = __ieee754_exp(fabs(x)); in __ieee754_cosh() 63 return half*t+half/t; in __ieee754_cosh() 75 t = half*w; in __ieee754_cosh() 76 return t*w; in __ieee754_cosh()
|