Lines Matching refs:t
32 long double t=0.0L,w,p,q,c,r,s; in asinl() local
46 t = x*x; in asinl()
47 p = P(t); in asinl()
48 q = Q(t); in asinl()
54 t = w*0.5L; in asinl()
55 p = P(t); in asinl()
56 q = Q(t); in asinl()
57 s = sqrtl(t); in asinl()
60 t = pio2_hi-(2.0L*(s+s*w)-pio2_lo); in asinl()
65 c = (t-w*w)/(s+w); in asinl()
69 t = pio4_hi-(p-q); in asinl()
71 if(expsign>0) return t; else return -t; in asinl()