OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:cos_theta
(Results
1 - 5
of
5
) sorted by null
/external/mesa3d/src/gallium/state_trackers/vega/
arc.h
45
VGfloat
cos_theta
, sin_theta;
member in struct:arc
/external/eigen/bench/
eig33.cpp
78
Scalar
cos_theta
= internal::cos(theta);
local
80
roots(0) = c2_over_3 + Scalar(2)*rho*
cos_theta
;
81
roots(1) = c2_over_3 - rho*(
cos_theta
+ s_sqrt3*sin_theta);
82
roots(2) = c2_over_3 - rho*(
cos_theta
- s_sqrt3*sin_theta);
/external/eigen/Eigen/src/Eigenvalues/
SelfAdjointEigenSolver.h
538
Scalar
cos_theta
= cos(theta);
local
541
roots(0) = c2_over_3 - rho*(
cos_theta
+ s_sqrt3*sin_theta); // == 2*rho*cos(theta+2pi/3)
542
roots(1) = c2_over_3 - rho*(
cos_theta
- s_sqrt3*sin_theta); // == 2*rho*cos(theta+ pi/3)
543
roots(2) = c2_over_3 + Scalar(2)*rho*
cos_theta
;
/external/pdfium/third_party/lcms2-2.6/src/
cmssm.c
147
cmsFloat64Number
cos_theta
;
local
153
cos_theta
= cos((M_PI * sp ->theta) / 180.0);
157
L = sp ->r *
cos_theta
;
/external/ceres-solver/include/ceres/
rotation.h
262
const T&
cos_theta
= quaternion[0];
local
264
// If
cos_theta
is negative, theta is greater than pi/2, which
278
T(2.0) * ((
cos_theta
< 0.0)
279
? atan2(-sin_theta, -
cos_theta
)
280
: atan2(sin_theta,
cos_theta
));
Completed in 1671 milliseconds