Lines Matching refs:t
33 long double t=0.0L,w,p,q,c,r,s; in asinl() local
47 t = x*x; in asinl()
48 p = P(t); in asinl()
49 q = Q(t); in asinl()
55 t = w*0.5L; in asinl()
56 p = P(t); in asinl()
57 q = Q(t); in asinl()
58 s = sqrtl(t); in asinl()
61 t = pio2_hi-(2.0L*(s+s*w)-pio2_lo); in asinl()
66 c = (t-w*w)/(s+w); in asinl()
70 t = pio4_hi-(p-q); in asinl()
72 if(expsign>0) return t; else return -t; in asinl()