Searched defs:t2 (Results 1 - 20 of 20) sorted by relevance

/bionic/libm/upstream-freebsd/lib/msun/src/
H A De_hypot.c33 * t1*y1+((x-y)*(x-y)+(t1*y2+t2*y))
34 * where t1 = 2x with lower 32 bits cleared, t2 = 2x-t1,
57 double a,b,t1,t2,y1,y2,w; local
108 t2 = a-t1;
109 w = sqrt(t1*t1-(b*(-b)-t2*(a+t1)));
117 t2 = a - t1;
118 w = sqrt(t1*y1-(w*(-w)-(t1*y2+t2*b)));
H A De_hypotf.c25 float a,b,t1,t2,y1,y2,w; local
69 t2 = a-t1;
70 w = __ieee754_sqrtf(t1*t1-(b*(-b)-t2*(a+t1)));
76 t2 = a - t1;
77 w = __ieee754_sqrtf(t1*y1-(w*(-w)-(t1*y2+t2*b)));
H A Dk_log.h90 double hfsq,s,z,R,w,t1,t2; local
96 t2= z*(Lg1+w*(Lg3+w*(Lg5+w*Lg7)));
97 R = t2+t1;
H A Dk_logf.h29 float hfsq,s,z,R,w,t1,t2; local
35 t2= z*(Lg1+w*Lg3);
36 R = t2+t1;
H A De_hypotl.c51 long double a=x,b=y,t1,t2,y1,y2,w; local
104 t2 = a-t1;
105 w = sqrtl(t1*t1-(b*(-b)-t2*(a+t1)));
114 t2 = a - t1;
115 w = sqrtl(t1*y1-(w*(-w)-(t1*y2+t2*b)));
H A De_log.c91 double hfsq,f,s,z,R,w,t1,t2,dk; local
132 t2= z*(Lg1+w*(Lg3+w*(Lg5+w*Lg7)));
134 R = t2+t1;
H A De_logf.c38 float hfsq,f,s,z,R,w,t1,t2,dk; local
78 t2= z*(Lg1+w*Lg3);
80 R = t2+t1;
H A De_lgammaf_r.c48 t2 = 4.83836412e-01, /* 0x3ef7b968 */ variable
179 p = t0+y*t1+y*y*(t2+y*(t3+y*(t4+y*(t5+y*(t6+y*t7)))));
H A De_powf.c59 float y1,t1,t2,r,s,sn,t,u,v,w; local
147 t2 = v-(t1-u);
199 t2 = z_l-(((t1-t)-dp_h[k])-z_h);
202 /* split up y into y1+y2 and compute (y1+y2)*(t1+t2) */
205 p_l = (y-y1)*t1+y*t2;
H A De_pow.c100 double y1,t1,t2,r,s,t,u,v,w; local
205 t2 = v-(t1-u);
253 t2 = z_l-(((t1-t)-dp_h[k])-z_h);
256 /* split up y into y1+y2 and compute (y1+y2)*(t1+t2) */
259 p_l = (y-y1)*t1+y*t2;
H A De_lgamma_r.c113 t2 = 6.46249402391333854778e-02, /* 0x3FB08B42, 0x94D5419B */ variable
262 p3 = t2+w*(t5+w*(t8+w*(t11+w*t14)));
/bionic/tests/
H A Dsemaphore_test.cpp80 pthread_t t1, t2, t3; local
82 ASSERT_EQ(0, pthread_create(&t2, NULL, SemWaitThreadFn, &s));
91 ASSERT_EQ(0, pthread_join(t2, &result));
H A Dstdatomic_test.cpp240 pthread_t t1,t2; local
242 ASSERT_EQ(0, pthread_create(&t2, 0, writer, &a));
245 ASSERT_EQ(0, pthread_join(t2, &result));
H A Dthread_local_test.cpp115 static const Triangle t2 = {{2,2}, {3,3}, {4,4}}; local
117 memcpy(shared_triangle, t2, sizeof(shared_triangle));
H A Dpthread_test.cpp283 pthread_t t2; local
284 ASSERT_EQ(0, pthread_create(&t2, NULL, JoinFn, reinterpret_cast<void*>(t1)));
286 sleep(1); // (Give t2 a chance to call pthread_join.)
297 // ...but t2's join on t1 still goes ahead (which we can tell because our join on t2 finishes).
299 ASSERT_EQ(0, pthread_join(t2, &join_result));
517 pthread_t t2; local
518 ASSERT_EQ(0, pthread_create(&t2, NULL, JoinFn, reinterpret_cast<void*>(t1)));
520 sleep(1); // (Give t2 a chance to call pthread_join.)
527 // ...but t2'
[all...]
/bionic/libc/kernel/uapi/linux/
H A Dgsmmux.h31 unsigned int t2; member in struct:gsm_config
H A Dax25.h104 unsigned int t2, t2timer; member in struct:ax25_info_struct_deprecated
115 unsigned int t2, t2timer; member in struct:ax25_info_struct
/bionic/libc/arch-mips/include/machine/
H A Dregdef.h66 #define t2 $14 macro
71 #define t2 $10 macro
/bionic/libc/arch-mips64/include/machine/
H A Dregdef.h66 #define t2 $14 macro
71 #define t2 $10 macro
/bionic/libm/upstream-freebsd/lib/msun/ld128/
H A De_lgammal_r.c74 t2 = 4.83836122723810585213722380854828904e-01L, variable
284 p = t0+y*t1+tt+y*y*(t2+y*(t3+y*(t4+y*(t5+y*(t6+y*(t7+y*(t8+

Completed in 557 milliseconds