Lines Matching refs:t
72 long double t; in _redupil() local
75 t = x / M_PIL; in _redupil()
76 if (t >= 0.0L) in _redupil()
77 t += 0.5L; in _redupil()
79 t -= 0.5L; in _redupil()
81 i = t; /* the multiple */ in _redupil()
82 t = i; in _redupil()
83 t = ((x - t * DP1) - t * DP2) - t * DP3; in _redupil()
84 return t; in _redupil()
92 long double f, x, x2, y, y2, rn, t; in _ctansl() local
114 t = y2 + x2; in _ctansl()
115 t /= f; in _ctansl()
116 d += t; in _ctansl()
124 t = y2 - x2; in _ctansl()
125 t /= f; in _ctansl()
126 d += t; in _ctansl()
127 } while (fabsl(t/d) > MACHEPL); in _ctansl()