/bionic/libm/upstream-freebsd/lib/msun/src/ |
D | e_hypotf.c | 25 float a,b,t1,t2,y1,y2,w; in hypotf() local 69 t2 = a-t1; in hypotf() 70 w = sqrtf(t1*t1-(b*(-b)-t2*(a+t1))); in hypotf() 76 t2 = a - t1; in hypotf() 77 w = sqrtf(t1*y1-(w*(-w)-(t1*y2+t2*b))); in hypotf()
|
D | e_hypot.c | 57 double a,b,t1,t2,y1,y2,w; in hypot() local 108 t2 = a-t1; in hypot() 109 w = sqrt(t1*t1-(b*(-b)-t2*(a+t1))); in hypot() 117 t2 = a - t1; in hypot() 118 w = sqrt(t1*y1-(w*(-w)-(t1*y2+t2*b))); in hypot()
|
D | k_logf.h | 29 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()
|
D | k_log.h | 90 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()
|
D | e_hypotl.c | 51 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()
|
D | e_logf.c | 38 float hfsq,f,s,z,R,w,t1,t2,dk; in logf() local 78 t2= z*(Lg1+w*Lg3); in logf() 80 R = t2+t1; in logf()
|
D | e_log.c | 91 double hfsq,f,s,z,R,w,t1,t2,dk; in log() local 132 t2= z*(Lg1+w*(Lg3+w*(Lg5+w*Lg7))); in log() 134 R = t2+t1; in log()
|
D | e_powf.c | 62 float y1,t1,t2,r,s,sn,t,u,v,w; in powf() local 150 t2 = v-(t1-u); in powf() 202 t2 = z_l-(((t1-t)-dp_h[k])-z_h); in powf() 208 p_l = (y-y1)*t1+y*t2; in powf()
|
D | e_pow.c | 104 double y1,t1,t2,r,s,t,u,v,w; in pow() local 209 t2 = v-(t1-u); in pow() 257 t2 = z_l-(((t1-t)-dp_h[k])-z_h); in pow() 263 p_l = (y-y1)*t1+y*t2; in pow()
|
D | e_lgammaf_r.c | 48 t2 = 4.83836412e-01, /* 0x3ef7b968 */ variable 179 p = t0+y*t1+y*y*(t2+y*(t3+y*(t4+y*(t5+y*(t6+y*t7))))); in lgammaf_r()
|
D | e_lgamma_r.c | 113 t2 = 6.46249402391333854778e-02, /* 0x3FB08B42, 0x94D5419B */ variable 262 p3 = t2+w*(t5+w*(t8+w*(t11+w*t14))); in lgamma_r()
|
/bionic/libc/arch-riscv64/bionic/ |
D | vfork.S | 41 lw t2, 20(t0) 57 sw t2, 20(t0)
|
/bionic/tests/ |
D | threads_test.cpp | 99 std::thread t2(waiter); in TEST() 109 t2.join(); in TEST() 144 std::thread t2(waiter); in TEST() 169 t2.join(); in TEST() 323 thrd_t t2 = thrd_current(); in TEST() 324 ASSERT_FALSE(thrd_equal(t1, t2)); in TEST() 326 ASSERT_TRUE(thrd_equal(t2, t2_2)); in TEST()
|
D | semaphore_test.cpp | 86 pthread_t t1, t2, t3; in TEST() local 88 ASSERT_EQ(0, pthread_create(&t2, nullptr, SemWaitThreadFn, &s)); in TEST() 97 ASSERT_EQ(0, pthread_join(t2, &result)); in TEST()
|
D | stdatomic_test.cpp | 264 pthread_t t1,t2; in TEST() local 266 ASSERT_EQ(0, pthread_create(&t2, nullptr, writer, &a)); in TEST() 269 ASSERT_EQ(0, pthread_join(t2, &result)); in TEST()
|
D | thread_local_test.cpp | 107 static const Triangle t2 = {{2,2}, {3,3}, {4,4}}; in reset_triangle() local 109 memcpy(shared_triangle, t2, sizeof(shared_triangle)); in reset_triangle()
|
D | time_test.cpp | 50 time_t p2, t2 = time(&p2); in TEST() local 52 ASSERT_NE(static_cast<time_t>(0), t2); in TEST() 53 ASSERT_NE(static_cast<time_t>(-1), t2); in TEST() 54 ASSERT_EQ(p2, t2); in TEST() 58 ASSERT_LE(t2 - t1, static_cast<time_t>(2)); in TEST() 61 ASSERT_LE(t2, time(nullptr)); in TEST() 62 ASSERT_LE(time(nullptr) - t2, static_cast<time_t>(1)); in TEST()
|
D | pthread_test.cpp | 320 pthread_t t2; in TEST() local 321 ASSERT_EQ(0, pthread_create(&t2, nullptr, JoinFn, reinterpret_cast<void*>(t1))); in TEST() 336 ASSERT_EQ(0, pthread_join(t2, &join_result)); in TEST() 715 pthread_t t2; in TEST() local 716 ASSERT_EQ(0, pthread_create(&t2, nullptr, JoinFn, reinterpret_cast<void*>(t1))); in TEST() 727 ASSERT_EQ(0, pthread_join(t2, &join_result)); in TEST() 3102 pthread_t t1, t2; in TEST() local 3106 &t2, nullptr, [](void*) -> void* { return nullptr; }, nullptr) != 0 || in TEST() 3107 pthread_join(t2, nullptr) != 0) { in TEST()
|
/bionic/libc/kernel/uapi/linux/ |
D | ax25.h | 75 unsigned int t2, t2timer; member 84 unsigned int t2, t2timer; member
|
D | gsmmux.h | 19 unsigned int t2; member
|
/bionic/libc/kernel/uapi/linux/hdlc/ |
D | ioctl.h | 75 unsigned int t2; member
|
/bionic/libc/kernel/uapi/asm-riscv/asm/ |
D | ptrace.h | 22 unsigned long t2; member
|
/bionic/libm/upstream-freebsd/lib/msun/ld128/ |
D | e_powl.c | 151 long double yy1, t1, t2, r, s, t, u, v, w; in powl() local 363 t2 = z_l - (((t1 - t) - dp_h[k]) - z_h); in powl() 376 p_l = (y - yy1) * t1 + y * t2; in powl()
|
D | e_lgammal_r.c | 74 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+ in lgammal_r()
|
/bionic/linker/arch/riscv64/ |
D | tlsdesc_resolver.S | 89 \op t2, 11
|