Home | History | Annotate | Download | only in src

Lines Matching refs:dt

39 	double dr, dt, dx;
98 dt = ft;
99 dr = dt * dt * dt;
100 dt = dt * (dx + dx + dr) / (dx + dr + dr);
103 dr = dt * dt * dt;
104 dt = dt * (dx + dx + dr) / (dx + dr + dr);
108 * dt is cbrtl(x) to ~47 bits (after x has been reduced to 1 <= x < 8).
116 t = dt + vd - 0x1.0p32;
119 * Round dt away from zero to 47 bits. Since we don't trust the 47,
121 * might be avoidable in this case, since on most machines dt will
124 * dt is much more accurate than needed.
126 t = dt + 0x2.0p-46 + 0x1.0p60L - 0x1.0p60;