/bionic/libm/upstream-freebsd/lib/msun/src/ |
H A D | e_hypot.c | 33 * 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 D | e_hypotf.c | 25 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 D | k_log.h | 90 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 D | k_logf.h | 29 float hfsq,s,z,R,w,t1,t2; local 35 t2= z*(Lg1+w*Lg3); 36 R = t2+t1;
|
H A D | e_hypotl.c | 51 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 D | e_log.c | 91 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 D | e_logf.c | 38 float hfsq,f,s,z,R,w,t1,t2,dk; local 78 t2= z*(Lg1+w*Lg3); 80 R = t2+t1;
|
H A D | e_powf.c | 59 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 D | e_pow.c | 100 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 D | e_lgamma_r.c | 112 t2 = 6.46249402391333854778e-02, /* 0x3FB08B42, 0x94D5419B */ variable 261 p3 = t2+w*(t5+w*(t8+w*(t11+w*t14)));
|
H A D | e_lgammaf_r.c | 45 t2 = 6.4624942839e-02, /* 0x3d845a15 */ variable 194 p3 = t2+w*(t5+w*(t8+w*(t11+w*t14)));
|
/bionic/libc/arch-mips/include/machine/ |
H A D | regdef.h | 59 #define t2 $14 macro 64 #define t2 $10 macro
|
/bionic/libc/kernel/arch-mips/asm/ |
H A D | regdef.h | 36 #define t2 $10 macro 91 #define t2 $14 macro
|
/bionic/tests/ |
H A D | pthread_test.cpp | 129 pthread_t t2; local 130 ASSERT_EQ(0, pthread_create(&t2, NULL, JoinFn, reinterpret_cast<void*>(t1))); 132 sleep(1); // (Give t2 a chance to call pthread_join.) 140 // ...but t2's join on t1 still goes ahead (which we can tell because our join on t2 finishes). 142 ASSERT_EQ(0, pthread_join(t2, &join_result)); 338 pthread_t t2; local 339 ASSERT_EQ(0, pthread_create(&t2, NULL, JoinFn, reinterpret_cast<void*>(t1))); 341 sleep(1); // (Give t2 a chance to call pthread_join.) 348 // ...but t2' [all...] |
/bionic/libc/kernel/common/linux/ |
H A D | wanrouter.h | 82 unsigned t2; member in struct:wan_x25_conf
|