Home
last modified time | relevance | path

Searched refs:t (Results 1 – 25 of 216) sorted by relevance

123456789

/sysdeps/ieee754/ldbl-128ibm/
A De_asinl.c159 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 De_acosl.c208 + 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 De_atanhl.c44 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 De_sinhl.c42 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 De_coshl.c43 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 Dgen_import_file_list36 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 Dieee754_float128.h25 # 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 De_asinl.c165 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 De_acosl.c212 + 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 De_sinhl.c66 _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 De_coshl.c64 _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 Ddl-machine.c32 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 De_asinl.c123 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 De_sinhl.c48 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 De_coshl.c46 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 De_acoshl.c40 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 Dtst-cond7.c51 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 Dtst-abstime.c35 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 De_asinf.c66 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 De_sinhf.c27 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 De_coshf.c26 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 De_acoshf.c29 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 Ds_isinff.c20 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 De_sinh.c47 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 De_cosh.c43 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()

Completed in 33 milliseconds

123456789