HomeSort by relevance Sort by last modified time
    Searched defs:Vec2 (Results 1 - 14 of 14) sorted by null

  /cts/apps/CtsVerifier/include/colorchecker/
vec2.h 24 class Vec2{
26 Vec2(T inputX, T inputY) {
31 Vec2() {}
33 inline Vec2<T> operator+ (const Vec2<T> &param) const {
34 Vec2<T> temp(mX + param.x(), mY + param.y());
38 inline Vec2<T> operator- (const Vec2<T> &param) const {
39 Vec2<T> temp(mX - param.x(), mY - param.y());
43 inline Vec2<float> operator/ (const int param) const
    [all...]
  /external/deqp/framework/common/
tcuVectorType.hpp 38 typedef Vector<float, 2> Vec2;
  /development/ndk/sources/android/ndk_helper/
vecmath.h 34 class Vec2;
43 class Vec2
55 Vec2()
60 Vec2( const float fX, const float fY )
66 Vec2( const Vec2& vec )
72 Vec2( const float* pVec )
79 Vec2 operator*( const Vec2& rhs ) const
81 Vec2 ret
    [all...]
  /external/ceres-solver/examples/
libmv_homography.cc 71 typedef Eigen::Matrix<double, 2, 1> Vec2;
136 const Vec2 &x1,
137 const Vec2 &x2) {
138 Vec2 forward_error, backward_error;
247 HomographySymmetricGeometricCostFunctor(const Vec2 &x,
248 const Vec2 &y)
254 typedef Eigen::Matrix<T, 2, 1> Vec2;
257 Vec2 x(T(x_(0)), T(x_(1)));
258 Vec2 y(T(y_(0)), T(y_(1)));
268 const Vec2 x_
    [all...]
  /external/deqp/modules/gles31/scripts/
gen-implicit-conversions.py 7 from genutil import Scalar, Vec2, Vec3, Vec4, Uint, UVec2, UVec3, UVec4, CaseGroup
213 "ivec2": [Vec2(x[0], x[1]) for x in IN_IVECTOR],
214 "uvec2": [Vec2(x[0], x[1]) for x in IN_UVECTOR],
220 "vec2": [Vec2(x[0], x[1]).toFloat() for x in IN_IVECTOR],
228 "ivec2": ["uvec2", "vec2"],
229 "uvec2": ["vec2"],
237 "int": ["vec2", "vec3", "vec4", "uvec2", "uvec3", "uvec4"],
238 "uint": ["vec2", "vec3", "vec4"]
250 "float": ["vec2", "vec3", "vec4"]
    [all...]