HomeSort by relevance Sort by last modified time
    Searched defs:theta (Results 1 - 25 of 76) sorted by null

1 2 3 4

  /external/fio/lib/
zipf.h 9 double theta; member in struct:zipf_state
17 void zipf_init(struct zipf_state *zs, unsigned long nranges, double theta, unsigned int seed);
  /external/libcxx/test/numerics/complex.number/complex.value.ops/
polar.pass.cpp 14 // polar(const T& rho, const T& theta = 0);
30 test(const T& rho, const T& theta, std::complex<T> x)
32 assert(std::polar(rho, theta) == x);
53 double theta = imag(x[i]); local
54 std::complex<double> z = std::polar(r, theta);
58 if (std::signbit(r) || classify(theta) == inf || classify(theta) == NaN)
69 if (std::signbit(r) || classify(theta) == inf || classify(theta) == NaN)
88 if (classify(theta) != NaN && classify(theta) != inf
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.value.ops/
polar.pass.cpp 14 // polar(const T& rho, const T& theta = 0);
30 test(const T& rho, const T& theta, std::complex<T> x)
32 assert(std::polar(rho, theta) == x);
53 double theta = imag(x[i]); local
54 std::complex<double> z = std::polar(r, theta);
58 if (std::signbit(r) || classify(theta) == inf || classify(theta) == NaN)
69 if (std::signbit(r) || classify(theta) == inf || classify(theta) == NaN)
88 if (classify(theta) != NaN && classify(theta) != inf
    [all...]
  /external/valgrind/main/none/tests/amd64/
bug132918.c 44 double theta; local
50 theta = (2.0 * 3.14159) / 10.0 * (double)i;
51 do_fprem(&r, 12.3*sin(theta), cos(theta)); show("xx", &r);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
arc.h 44 VGfloat theta; member in struct:arc
  /external/mesa3d/src/gallium/state_trackers/vega/
arc.h 44 VGfloat theta; member in struct:arc
  /external/chromium_org/third_party/angle/samples/angle/sample_util/
Matrix.cpp 42 float theta = angle * (M_PI / 180.0f); local
43 float cos_t = cosf(theta);
44 float sin_t = sinf(theta);
  /external/opencv/cv/src/
_cvlist.h 367 float rho, theta; member in struct:__index
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/atlantis/
atlantis.h 47 float x, y, z, phi, theta, psi, v; member in struct:_fishRec
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/atlantis/
atlantis.h 47 float x, y, z, phi, theta, psi, v; member in struct:_fishRec
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/atlantis/
atlantis.h 47 float x, y, z, phi, theta, psi, v; member in struct:_fishRec
  /external/srec/srec/clib/
jacobi.c 128 double theta = 0.5 * h / a[i][j]; local
129 t = 1.0 / (fabs(theta) + sqrt(1.0 + theta * theta));
130 if (theta < 0.0) t = -t;
  /development/perftests/panorama/feature_mos/src/mosaic/
MosaicTypes.h 136 double theta; member in struct:__anon2565
  /development/perftests/panorama/feature_stab/db_vlvm/
db_utilities_poly.cpp 31 double r2_min_q3,theta,bp_through3,theta_through3; local
56 theta=acos(db_maxd(-1.0,db_mind(1.0,r/(q*srq))));
58 theta_through3=theta/3.0;
  /external/ceres-solver/examples/
more_garbow_hillstrom.cc 180 const T theta = T(0.5 / M_PI) * atan(x2 / x1) + (x1 > 0.0 ? T(0.0) : T(0.5)); member in namespace:ceres::examples
182 residual[0] = T(10.0) * (x3 - T(10.0) * theta);
  /external/chromium_org/third_party/freetype/src/base/
fttrigon.c 146 FT_Angle theta )
157 while ( theta < -FT_ANGLE_PI4 )
162 theta += FT_ANGLE_PI2;
165 while ( theta > FT_ANGLE_PI4 )
170 theta -= FT_ANGLE_PI2;
178 if ( theta < 0 )
183 theta += *arctanptr++;
190 theta -= *arctanptr++;
202 FT_Angle theta; local
216 theta = FT_ANGLE_PI2
    [all...]
  /external/eigen/bench/
eig33.cpp 77 Scalar theta = std::atan2(internal::sqrt(-q),half_b)*s_inv3; local
78 Scalar cos_theta = internal::cos(theta);
79 Scalar sin_theta = internal::sin(theta);
quat_slerp.cpp 32 // theta is the angle between the 2 quaternions
33 Scalar theta = std::acos(absD);
34 Scalar sinTheta = internal::sin(theta);
36 Scalar scale0 = internal::sin( ( Scalar(1) - t ) * theta) / sinTheta;
37 Scalar scale1 = internal::sin( ( t * theta) ) / sinTheta;
62 // theta is the angle between the 2 quaternions
63 Scalar theta = std::acos(absD); local
64 Scalar sinTheta = internal::sin(theta);
66 scale0 = internal::sin( ( Scalar(1) - t ) * theta) / sinTheta;
67 scale1 = internal::sin( ( t * theta) ) / sinTheta
90 Scalar theta; local
114 Scalar theta; local
    [all...]
  /external/eigen/demos/opengl/
camera.cpp 217 float theta = mFovY*0.5; local
219 float invtan = 1./tan(theta);
  /external/eigen/test/
geo_quaternion.cpp 38 Scalar theta = AA(q*q0.inverse()).angle(); local
41 else VERIFY(abs(theta - t * theta_tot) < largeEps);
  /external/freetype/src/base/
fttrigon.c 146 FT_Angle theta )
157 while ( theta < -FT_ANGLE_PI4 )
162 theta += FT_ANGLE_PI2;
165 while ( theta > FT_ANGLE_PI4 )
170 theta -= FT_ANGLE_PI2;
178 if ( theta < 0 )
183 theta += *arctanptr++;
190 theta -= *arctanptr++;
202 FT_Angle theta; local
216 theta = FT_ANGLE_PI2
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
fttrigon.c 146 FT_Angle theta )
157 while ( theta < -FT_ANGLE_PI4 )
162 theta += FT_ANGLE_PI2;
165 while ( theta > FT_ANGLE_PI4 )
170 theta -= FT_ANGLE_PI2;
178 if ( theta < 0 )
183 theta += *arctanptr++;
190 theta -= *arctanptr++;
202 FT_Angle theta; local
216 theta = FT_ANGLE_PI2
    [all...]
  /frameworks/ml/bordeaux/learning/stochastic_linear_ranker/native/
sparse_weight_vector.cpp 289 const double theta = abs_val_vec[curr_l0_norm - req_l0_norm]; local
294 if ((fabs(iter->second/normalizer_) - theta) < 0) {
327 double theta = 0; local
333 theta = (cum_sum - l1_norm)/curr_index;
334 if (((*val_iter) - theta) <= 0) {
345 (fabs(iter->second/normalizer_) - theta),
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
MosaicTypes.h 136 double theta; member in struct:__anon23162
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_utilities_poly.cpp 31 double r2_min_q3,theta,bp_through3,theta_through3; local
56 theta=acos(db_maxd(-1.0,db_mind(1.0,r/(q*srq))));
58 theta_through3=theta/3.0;

Completed in 663 milliseconds

1 2 3 4