Searched defs:square (Results 1 - 25 of 40) sorted by last modified time

12

/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/external/skia/tests/
H A DPathTest.cpp1090 SkPath square; local
1091 square.moveTo(0, 0);
1092 square.lineTo(SK_Scalar1, 0);
1093 square.lineTo(SK_Scalar1, SK_Scalar1);
1094 square.lineTo(0, SK_Scalar1);
1095 square.close();
1096 check_convexity(reporter, square, SkPath::kConvex_Convexity);
1097 check_direction(reporter, square, SkPath::kCW_Direction);
/external/skia/third_party/etc1/
H A Detc1.cpp206 // Output is a 4 x 4 square of 3-byte pixels in form R, G, B
302 inline int square(int x) { function
320 etc1_uint32 score = (etc1_uint32) (6 * square(decodedG - pixelG));
325 score += (etc1_uint32) (3 * square(decodedR - pixelR));
330 score += (etc1_uint32) square(decodedB - pixelB);
487 // Input is a 4 x 4 square of 3-byte pixels in form R, G, B
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_crc32.c52 local void gf2_matrix_square OF((unsigned long *square, unsigned long *mat));
345 unsigned long *square,
351 square[n] = gf2_matrix_times(mat, mat[n]);
383 /* apply len2 zeros to crc1 (first square will put the operator for one
344 gf2_matrix_square( unsigned long *square, unsigned long *mat) argument
/external/opencv/cv/src/
H A Dcvcamshift.cpp175 double theta = 0, square; local
232 square = sqrt( 4 * b * b + (a - c) * (a - c) );
235 theta = atan2( 2 * b, a - c + square );
/external/google-tv-pairing-protocol/java/jar/
H A Dbcprov-jdk15-143.jarMETA-INF/MANIFEST.MF META-INF/BCKEY.SF META-INF/BCKEY.DSA META ...
/external/eigen/Eigen/src/Eigen2Support/
H A DCwiseOperators.h135 /** \deprecated ArrayBase::square() */
138 Cwise<ExpressionType>::square() const function in class:Eigen::Cwise
/external/eigen/Eigen/src/plugins/
H A DArrayCwiseUnaryOps.h21 * \sa abs(), square()
55 /** \returns an expression of the coefficient-wise square root of *this.
60 * \sa pow(), square()
163 /** \returns an expression of the coefficient-wise square of *this.
171 square() const function
181 * \sa square(), pow()
/external/eigen/test/
H A Dadjoint.cpp18 static void run(const Vec& v1, const Vec& v2, Vec& v3, const Mat& square, Scalar s1, Scalar s2) { argument
23 VERIFY(test_isApproxWithRef(v1.dot(square * v2), (square.adjoint() * v1).dot(v2), 0));
29 static void run(const Vec& v1, const Vec& v2, Vec& v3, const Mat& square, Scalar s1, Scalar s2) { argument
47 ref = NumTraits<Scalar>::IsInteger ? 0 : (std::max)((std::max)(v1.norm(),v2.norm()),(std::max)((square * v2).norm(),(square.adjoint() * v1).norm()));
48 VERIFY(internal::isMuchSmallerThan(abs(v1.dot(square * v2) - (square.adjoint() * v1).dot(v2)), ref, test_precision<Scalar>()));
74 square = SquareMatrixType::Random(rows, rows); local
95 adjoint_specific<NumTraits<Scalar>::IsInteger>::run(v1, v2, v3, square, s
[all...]
H A Dbasicstuff.cpp30 square = Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime>::Random(rows, rows); local
73 square.col(r) = square.row(r).eval();
76 rv = square.row(r);
77 cv = square.col(r);
H A Ddontalign.cpp31 SquareMatrixType square = SquareMatrixType::Random(rows,rows); local
34 VERIFY_IS_APPROX(v, square * square.colPivHouseholderQr().solve(v));
35 square = square.inverse().eval();
36 a = square * a;
37 square = square*square;
38 v = square *
[all...]
H A Dinteger_types.cpp73 square = SquareMatrixType::Random(rows, rows); local
131 VERIFY_IS_APPROX(square * (m1 + m2), square * m1 + square * m2);
132 VERIFY_IS_APPROX((m1 + m2).transpose() * square, m1.transpose() * square + m2.transpose() * square);
H A Dproduct.h44 square = RowSquareMatrixType::Random(rows, rows), local
68 VERIFY_IS_APPROX(square*(m1 + m2), square*m1+square*m2);
69 VERIFY_IS_APPROX(square*(m1 - m2), square*m1-square*m2);
72 VERIFY_IS_APPROX(s1*(square*m1), (s1*square)*m1);
73 VERIFY_IS_APPROX(s1*(square*m
[all...]
H A Dproduct_extra.cpp29 square = MatrixType::Random(rows, rows), local
42 VERIFY_IS_APPROX(m3.noalias() = m1.adjoint() * square.adjoint(), m1.adjoint().eval() * square.adjoint().eval());
/external/eigen/test/eigen2/
H A Deigen2_adjoint.cpp34 square = SquareMatrixType::Random(rows, rows); local
64 VERIFY(ei_isApprox(v1.eigen2_dot(square * v2), (square.adjoint() * v1).eigen2_dot(v2), largerEps));
H A Deigen2_basicstuff.cpp28 square = Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime>::Random(rows, rows); local
71 square.col(r) = square.row(r).eval();
74 rv = square.row(r);
75 cv = square.col(r);
H A Deigen2_cwiseop.cpp39 square = Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime>::Random(rows, rows); local
80 VERIFY_IS_APPROX(m1.cwise().pow(2), m1.cwise().square());
101 VERIFY_IS_APPROX(m3.cwise().square(), m1.cwise().abs());
102 VERIFY_IS_APPROX(m1.cwise().square().cwise().sqrt(), m1.cwise().abs());
105 VERIFY_IS_APPROX(m1.cwise().pow(2), m1.cwise().square());
112 VERIFY_IS_APPROX(mones, m1.cwise().sin().cwise().square() + m1.cwise().cos().cwise().square());
H A Deigen2_miscmatrices.cpp31 square = v1.asDiagonal(); local
32 if(r==r2) VERIFY_IS_APPROX(square(r,r2), v1[r]);
33 else VERIFY_IS_MUCH_SMALLER_THAN(square(r,r2), static_cast<Scalar>(1));
34 square = MatrixType::Zero(rows, rows);
35 square.diagonal() = VectorType::Ones(rows);
36 VERIFY_IS_APPROX(square, MatrixType::Identity(rows, rows));
H A Deigen2_nomalloc.cpp39 square = Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> local
H A Deigen2_submatrices.cpp58 square = Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> local
74 VERIFY_IS_APPROX(square.row(r1).eigen2_dot(m1.col(c1)), (square.lazy() * m1.conjugate())(r1,c1));
H A Deigen2_triangular.cpp33 square = Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> local
H A Dproduct.h47 square = RowSquareMatrixType::Random(rows, rows), local
73 VERIFY_IS_APPROX(square*(m1 + m2), square*m1+square*m2);
74 VERIFY_IS_APPROX(square*(m1 - m2), square*m1-square*m2);
77 VERIFY_IS_APPROX(s1*(square*m1), (s1*square)*m1);
78 VERIFY_IS_APPROX(s1*(square*m
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
H A Dp1.cpp100 constexpr int square(int x); // expected-note {{declared here}}
110 : x(square(a)), y(square(a)) // expected-note {{undefined function 'square' cannot be used in a constant expression}}
115 constexpr int square(int x) { function
H A Dp3.cpp263 constexpr int square(int x) { function in namespace:std_example

Completed in 5545 milliseconds

12