HomeSort by: relevance | last modified time | path
    Searched defs:theta (Results 1 - 8 of 8) sorted by relevancy

  /src/lib/libm/complex/
cpow.c 40 double x, y, r, theta, absa, arga; local in function:cpow
50 theta = x * arga;
53 theta = theta + y * log(absa);
55 w = r * cos(theta) + (r * sin(theta)) * I;
cpowf.c 40 float x, y, r, theta, absa, arga; local in function:cpowf
50 theta = x * arga;
53 theta = theta + y * logf(absa);
55 w = r * cosf(theta) + (r * sinf(theta)) * I;
cpowl.c 40 long double x, y, r, theta, absa, arga; local in function:cpowl
50 theta = x * arga;
53 theta = theta + y * logl(absa);
55 w = r * cosl(theta) + (r * sinl(theta)) * I;
  /src/tests/lib/libm/
t_cos.c 83 long double theta = angles[i].x; local in function:ATF_TC_BODY
87 if (!(fabsl((cosl(theta) - cos_theta)/cos_theta) <= eps)) {
90 deg, theta, cosl(theta), cos_theta);
179 double theta = angles[i].x; local in function:ATF_TC_BODY
183 if (!(fabs((cos(theta) - cos_theta)/cos_theta) <= eps)) {
186 deg, theta, cos(theta), cos_theta);
275 float theta = angles[i].x; local in function:ATF_TC_BODY
288 volatile float result = cosf(theta);
    [all...]
t_sin.c 77 double theta = angles[i].x; local in function:ATF_TC_BODY
84 ok = (sin(theta) == 0);
87 ok = (fabs((sin(theta) - sin_theta)/sin_theta) <= eps);
93 deg, theta, sin(theta), sin_theta);
183 float theta = angles[i].x; local in function:ATF_TC_BODY
192 ok = (sinf(theta) == 0);
194 ok = (fabsf((sinf(theta) - sin_theta)/sin_theta)
200 deg, sinf(theta), sin_theta);
t_tan.c 73 double theta = angles[i].x; local in function:ATF_TC_BODY
77 if (theta == 0) {
80 ok = (tan(theta) == 0);
83 ok = (fabs((tan(theta) - tan_theta)/tan_theta) <= eps);
89 deg, theta, tan(theta), tan_theta);
179 float theta = angles[i].x; local in function:ATF_TC_BODY
186 if (theta == 0) {
189 ok = (tan(theta) == 0);
192 ok = (fabsf((tanf(theta) - tan_theta)/tan_theta
    [all...]
t_sincos.c 114 long double theta = sin_angles[i].x; local in function:ATF_TC_BODY
119 sincosl(theta, &s, &c);
124 deg, theta, s, sin_theta);
129 deg, theta, c, cos_theta);
230 double theta = sin_angles[i].x; local in function:ATF_TC_BODY
235 sincos(theta, &s, &c);
240 deg, theta, s, sin_theta);
245 deg, theta, c, cos_theta);
346 float theta = sin_angles[i].x; local in function:ATF_TC_BODY
351 sincosf(theta, &s, &c)
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/vmwgfx/device_include/
svga3d_cmd.h 439 float theta; member in struct:__anon411ade0f0a08

Completed in 49 milliseconds