Home
last modified time | relevance | path

Searched refs:t2 (Results 1 – 18 of 18) sorted by relevance

/relibc/pthreads-emb/tests/
H A Dequal1.c55 pthread_t t1, t2; in pthread_test_equal1() local
59 assert(pthread_create(&t2, NULL, func, (void *) 2) == 0); in pthread_test_equal1()
61 assert(pthread_equal(t1, t2) == 0); in pthread_test_equal1()
66 assert(pthread_join(t2,NULL) == 0); in pthread_test_equal1()
H A Donce1.c71 pthread_t t1, t2; in pthread_test_once1() local
80 assert(pthread_create(&t2, NULL, mythread, NULL) == 0); in pthread_test_once1()
87 assert(pthread_join(t2,NULL) == 0); in pthread_test_once1()
/relibc/openlibm/src/
H A De_hypotf.c26 float a,b,t1,t2,y1,y2,w; in __ieee754_hypotf() local
70 t2 = a-t1; in __ieee754_hypotf()
71 w = __ieee754_sqrtf(t1*t1-(b*(-b)-t2*(a+t1))); in __ieee754_hypotf()
77 t2 = a - t1; in __ieee754_hypotf()
78 w = __ieee754_sqrtf(t1*y1-(w*(-w)-(t1*y2+t2*b))); in __ieee754_hypotf()
H A De_hypot.c57 double a,b,t1,t2,y1,y2,w; in __ieee754_hypot() local
108 t2 = a-t1; in __ieee754_hypot()
109 w = sqrt(t1*t1-(b*(-b)-t2*(a+t1))); in __ieee754_hypot()
117 t2 = a - t1; in __ieee754_hypot()
118 w = sqrt(t1*y1-(w*(-w)-(t1*y2+t2*b))); in __ieee754_hypot()
H A Dk_logf.h29 float hfsq,s,z,R,w,t1,t2; in k_log1pf() local
35 t2= z*(Lg1+w*Lg3); in k_log1pf()
36 R = t2+t1; in k_log1pf()
H A Dk_log.h90 double hfsq,s,z,R,w,t1,t2; in k_log1p() local
96 t2= z*(Lg1+w*(Lg3+w*(Lg5+w*Lg7))); in k_log1p()
97 R = t2+t1; in k_log1p()
H A De_hypotl.c51 long double a=x,b=y,t1,t2,y1,y2,w; in hypotl() local
104 t2 = a-t1; in hypotl()
105 w = sqrtl(t1*t1-(b*(-b)-t2*(a+t1))); in hypotl()
114 t2 = a - t1; in hypotl()
115 w = sqrtl(t1*y1-(w*(-w)-(t1*y2+t2*b))); in hypotl()
H A De_logf.c38 float hfsq,f,s,z,R,w,t1,t2,dk; in __ieee754_logf() local
78 t2= z*(Lg1+w*Lg3); in __ieee754_logf()
80 R = t2+t1; in __ieee754_logf()
H A De_log.c89 double hfsq,f,s,z,R,w,t1,t2,dk; in __ieee754_log() local
130 t2= z*(Lg1+w*(Lg3+w*(Lg5+w*Lg7))); in __ieee754_log()
132 R = t2+t1; in __ieee754_log()
H A De_powf.c60 float y1,t1,t2,r,s,sn,t,u,v,w; in __ieee754_powf() local
153 t2 = v-(t1-u); in __ieee754_powf()
205 t2 = z_l-(((t1-t)-dp_h[k])-z_h); in __ieee754_powf()
211 p_l = (y-y1)*t1+y*t2; in __ieee754_powf()
H A De_pow.c101 double y1,t1,t2,r,s,t,u,v,w; in __ieee754_pow() local
211 t2 = v-(t1-u); in __ieee754_pow()
259 t2 = z_l-(((t1-t)-dp_h[k])-z_h); in __ieee754_pow()
265 p_l = (y-y1)*t1+y*t2; in __ieee754_pow()
H A De_lgammaf_r.c46 t2 = 6.4624942839e-02, /* 0x3d845a15 */ variable
195 p3 = t2+w*(t5+w*(t8+w*(t11+w*t14))); in __ieee754_lgammaf_r()
H A De_lgamma_r.c113 t2 = 6.46249402391333854778e-02, /* 0x3FB08B42, 0x94D5419B */ variable
262 p3 = t2+w*(t5+w*(t8+w*(t11+w*t14))); in __ieee754_lgamma_r()
/relibc/openlibm/ld128/
H A De_hypotl.c52 long double a,b,t1,t2,yy1,y2,w; in hypotl() local
103 t2 = a-t1; in hypotl()
104 w = sqrtl(t1*t1-(b*(-b)-t2*(a+t1))); in hypotl()
112 t2 = a - t1; in hypotl()
113 w = sqrtl(t1*yy1-(w*(-w)-(t1*y2+t2*b))); in hypotl()
H A De_powl.c147 long double yy1, t1, t2, r, s, t, u, v, w; in powl() local
359 t2 = z_l - (((t1 - t) - dp_h[k]) - z_h); in powl()
372 p_l = (y - yy1) * t1 + y * t2; in powl()
/relibc/openlibm/ld80/
H A De_hypotl.c52 long double a,b,t1,t2,yy1,y2,w; in hypotl() local
102 t2 = a-t1; in hypotl()
103 w = sqrtl(t1*t1-(b*(-b)-t2*(a+t1))); in hypotl()
112 t2 = a - t1; in hypotl()
113 w = sqrtl(t1*yy1-(w*(-w)-(t1*y2+t2*b))); in hypotl()
/relibc/pthreads-emb/
H A Dpthread_equal.c48 pthread_equal (pthread_t t1, pthread_t t2) in pthread_equal() argument
78 result = ( t1 == t2 ); in pthread_equal()
H A Dpthread.h720 pthread_t t2);