Searched defs:t1 (Results 1 - 25 of 26) sorted by relevance

12

/bionic/libc/tzcode/
H A Ddifftime.c25 double t1 = time1, t0 = time0; local
26 return t1 - t0;
38 uintmax_t t1 = time1, t0 = time0; local
39 return time0 <= time1 ? t1 - t0 : dminus(t0 - t1);
55 long double t1 = time1, t0 = time0; local
56 return t1 - t0;
/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
90 t1=0;
91 SET_HIGH_WORD(t1,0x7fd00000); /* t1=2^1022 */
92 b *= t1;
93 a *= t1;
[all...]
H A De_hypotf.c25 float a,b,t1,t2,y1,y2,w; local
53 SET_FLOAT_WORD(t1,0x7e800000); /* t1=2^126 */
54 b *= t1;
55 a *= t1;
68 SET_FLOAT_WORD(t1,ha&0xfffff000);
69 t2 = a-t1;
70 w = __ieee754_sqrtf(t1*t1-(b*(-b)-t2*(a+t1)));
[all...]
H A Dk_log.h90 double hfsq,s,z,R,w,t1,t2; local
95 t1= w*(Lg2+w*(Lg4+w*Lg6));
97 R = t2+t1;
H A Dk_logf.h29 float hfsq,s,z,R,w,t1,t2; local
34 t1= w*(Lg2+w*Lg4);
36 R = t2+t1;
H A De_sqrt.c100 u_int32_t r,t1,s1,ix1,q1; local
155 t1 = s1+r;
157 if((t<ix0)||((t==ix0)&&(t1<=ix1))) {
158 s1 = t1+r;
159 if(((t1&sign)==sign)&&(s1&sign)==0) s0 += 1;
161 if (ix1 < t1) ix0 -= 1;
162 ix1 -= t1;
H A De_hypotl.c51 long double a=x,b=y,t1,t2,y1,y2,w; local
85 t1=0;
86 SET_HIGH_WORD(t1,ESW(MAX_EXP-2)); /* t1=2^(MAX_EXP-2) */
87 b *= t1;
88 a *= t1;
101 t1 = a;
103 uv.e = t1; uv.bits.manl = 0; t1 = uv.e;
104 t2 = a-t1;
[all...]
H A De_log.c91 double hfsq,f,s,z,R,w,t1,t2,dk; local
131 t1= w*(Lg2+w*(Lg4+w*Lg6));
134 R = t2+t1;
H A De_logf.c38 float hfsq,f,s,z,R,w,t1,t2,dk; local
77 t1= w*(Lg2+w*Lg4);
80 R = t2+t1;
H A De_lgammaf_r.c47 t1 = -2.35939837e-08, /* 0xb2caabb8 */ 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
144 t1 = u+v;
145 GET_FLOAT_WORD(is,t1);
146 SET_FLOAT_WORD(t1,is&0xfffff000);
147 t2 = v-(t1-u);
196 t1 = (((z_h+z_l)+dp_h[k])+t);
197 GET_FLOAT_WORD(is,t1);
198 SET_FLOAT_WORD(t1,is&0xfffff000);
199 t2 = z_l-(((t1-t)-dp_h[k])-z_h);
202 /* split up y into y1+y2 and compute (y1+y2)*(t1
[all...]
H A De_pow.c100 double y1,t1,t2,r,s,t,u,v,w; local
203 t1 = u+v;
204 SET_LOW_WORD(t1,0);
205 t2 = v-(t1-u);
251 t1 = (((z_h+z_l)+dp_h[k])+t);
252 SET_LOW_WORD(t1,0);
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;
260 p_h = y1*t1;
[all...]
H A De_lgamma_r.c112 t1 = -1.47587722994593911752e-01, /* 0xBFC2E427, 0x8DC6C509 */ variable
261 p2 = t1+w*(t4+w*(t7+w*(t10+w*t13)));
/bionic/tests/
H A Dsemaphore_test.cpp80 pthread_t t1, t2, t3; local
81 ASSERT_EQ(0, pthread_create(&t1, NULL, SemWaitThreadFn, &s));
90 ASSERT_EQ(0, pthread_join(t1, &result));
H A Dstdatomic_test.cpp240 pthread_t t1,t2; local
241 ASSERT_EQ(0, pthread_create(&t1, 0, reader, &a));
243 ASSERT_EQ(0, pthread_join(t1, &result));
H A Dthread_local_test.cpp114 static const Triangle t1 = {{3,3}, {4,4}, {5,5}}; local
116 memcpy(local_triangle, t1, sizeof(local_triangle));
H A Dtime_test.cpp532 clock_t t1 = clock(); local
533 ASSERT_LT(t1 - t0, CLOCKS_PER_SEC / 1000);
H A Dstdio_test.cpp942 time_t t1 = time(NULL); local
947 ASSERT_LE(t1 - t0, 1);
H A Dpthread_test.cpp265 pthread_t t1; local
266 ASSERT_EQ(0, pthread_create(&t1, NULL, spinhelper.GetFunction(), NULL));
269 ASSERT_EQ(0, pthread_detach(t1));
270 AssertDetached(t1, true);
273 ASSERT_EQ(EINVAL, pthread_join(t1, NULL));
279 pthread_t t1; local
280 ASSERT_EQ(0, pthread_create(&t1, NULL, spinhelper.GetFunction(), NULL));
284 ASSERT_EQ(0, pthread_create(&t2, NULL, JoinFn, reinterpret_cast<void*>(t1)));
289 ASSERT_EQ(EINVAL, pthread_detach(t1));
291 ASSERT_EQ(0, pthread_detach(t1));
412 pthread_t t1; local
514 pthread_t t1; local
[all...]
/bionic/libc/kernel/uapi/linux/
H A Dgsmmux.h30 unsigned int t1; member in struct:gsm_config
H A Dax25.h102 unsigned int t1, t1timer; member in struct:ax25_info_struct_deprecated
114 unsigned int t1, t1timer; member in struct:ax25_info_struct
/bionic/libc/dns/resolv/
H A Dres_stats.c27 /* Calculate the round-trip-time from start time t0 and end time t1. */
29 _res_stats_calculate_rtt(const struct timespec* t1, const struct timespec* t0) { argument
32 long ms1 = t1->tv_sec * 1000 + t1->tv_nsec / 1000000;
/bionic/libc/arch-mips/include/machine/
H A Dregdef.h65 #define t1 $13 macro
70 #define t1 $9 macro
/bionic/libc/arch-mips64/include/machine/
H A Dregdef.h65 #define t1 $13 macro
70 #define t1 $9 macro
/bionic/libm/upstream-freebsd/lib/msun/ld128/
H A De_lgammal_r.c73 t1 = -6.08453430711711404116887457663281416e-35L, variable
284 p = t0+y*t1+tt+y*y*(t2+y*(t3+y*(t4+y*(t5+y*(t6+y*(t7+y*(t8+

Completed in 8933 milliseconds

12