HomeSort by relevance Sort by last modified time
    Searched refs:VERIFY (Results 76 - 100 of 202) sorted by null

1 2 34 5 6 7 8 9

  /external/eigen/test/
cholesky.cpp 26 VERIFY( (#XPR) && nb_temporaries==N ); \
111 VERIFY(chollo.info()==NumericalIssue);
328 VERIFY(!ldlt.isNegative());
329 VERIFY(!ldlt.isPositive());
334 VERIFY(!ldlt.isNegative());
335 VERIFY(!ldlt.isPositive());
340 VERIFY(ldlt.isNegative());
341 VERIFY(ldlt.isPositive());
346 VERIFY(!ldlt.isNegative());
347 VERIFY(ldlt.isPositive())
    [all...]
schur_real.cpp 24 VERIFY(T(row,col) == Scalar(0));
32 VERIFY(row == size-1 || T(row+1,row) == 0);
35 VERIFY(4 * det > tr * tr);
adjoint.cpp 19 VERIFY(test_isApproxWithRef((s1 * v1 + s2 * v2).dot(v3), numext::conj(s1) * v1.dot(v3) + numext::conj(s2) * v2.dot(v3), 0));
20 VERIFY(test_isApproxWithRef(v3.dot(s1 * v1 + s2 * v2), s1*v3.dot(v1)+s2*v3.dot(v2), 0));
23 VERIFY(test_isApproxWithRef(v1.dot(square * v2), (square.adjoint() * v1).dot(v2), 0));
34 VERIFY(test_isApproxWithRef((s1 * v1 + s2 * v2).dot(v3), numext::conj(s1) * v1.dot(v3) + numext::conj(s2) * v2.dot(v3), ref));
35 VERIFY(test_isApproxWithRef(v3.dot(s1 * v1 + s2 * v2), s1*v3.dot(v1)+s2*v3.dot(v2), ref));
48 VERIFY(internal::isMuchSmallerThan(abs(v1.dot(square * v2) - (square.adjoint() * v1).dot(v2)), ref, test_precision<Scalar>()));
geo_quaternion.cpp 39 VERIFY(abs(q.norm() - 1) < largeEps);
40 if(theta_tot==0) VERIFY(theta_tot==0);
41 else VERIFY(abs(theta - t * theta_tot) < largeEps);
98 VERIFY( (q2*q1).isApprox(q1*q2, largeEps)
262 // verify that map-to-const don't have LvalueBit
264 VERIFY( !(internal::traits<Map<ConstPlainObjectType> >::Flags & LvalueBit) );
265 VERIFY( !(internal::traits<Map<ConstPlainObjectType, Aligned> >::Flags & LvalueBit) );
266 VERIFY( !(Map<ConstPlainObjectType>::Flags & LvalueBit) );
267 VERIFY( !(Map<ConstPlainObjectType, Aligned>::Flags & LvalueBit) );
conservative_resize.cpp 55 VERIFY( rows<=50 || m.block(50,0,rows-50,cols).sum() == Scalar(0) );
56 VERIFY( cols<=50 || m.block(0,50,rows,cols-50).sum() == Scalar(0) );
104 VERIFY( size<=50 || m.segment(50,size-50).sum() == Scalar(0) );
109 VERIFY( size<=50 || m.segment(50,size-50).sum() == Scalar(0) );
geo_alignedbox.cpp 50 VERIFY(b0.contains(p0*s1+(Scalar(1)-s1)*p1));
53 VERIFY(b2.contains(b0));
54 VERIFY(b2.contains(b1));
69 VERIFY(b0.contains(r));
spqr_support.cpp 56 VERIFY(x.isApprox(refX,test_precision<Scalar>()));
sparse_solver.h 37 VERIFY(oldb.isApprox(b) && "sparse solver testing: the rhs should not be modified!");
39 VERIFY(x.isApprox(refX,test_precision<Scalar>()));
56 VERIFY(oldb.isApprox(b) && "sparse solver testing: the rhs should not be modified!");
58 VERIFY(x.isApprox(refX,test_precision<Scalar>()));
67 VERIFY(oldb.isApprox(db) && "sparse solver testing: the rhs should not be modified!");
68 VERIFY(x.isApprox(refX,test_precision<Scalar>()));
array_reverse.cpp 31 // Verify that MatrixBase::reverse() works
39 // Verify that a Reverse default (in both directions) of an expression works
47 // Verify that a Reverse in both directions of an expression works
55 // Verify that a Reverse in the vertical directions of an expression works
63 // Verify that a Reverse in the horizontal directions of an expression works
71 // Verify that a VectorType::reverse() of an expression works
77 // Verify that PartialRedux::reverse() works (for colwise())
85 // Verify that PartialRedux::reverse() works (for rowwise())
125 VERIFY(x.reverse()[1] == 3);
126 VERIFY(x.reverse() == y)
    [all...]
block.cpp 128 VERIFY(numext::real(ones.col(c1).sum()) == RealScalar(rows));
129 VERIFY(numext::real(ones.row(r1).sum()) == RealScalar(cols));
131 VERIFY(numext::real(ones.col(c1).dot(ones.col(c2))) == RealScalar(rows));
132 VERIFY(numext::real(ones.row(r1).dot(ones.row(r2))) == RealScalar(cols));
194 VERIFY(m.coeff(i,j) == data[i*rowStride + j*colStride]);
200 VERIFY(m.coeff(i,j) == data[(MatrixType::Flags&RowMajorBit)
207 VERIFY(innerStride == int((&m.coeff(1))-(&m.coeff(0))));
209 VERIFY(m.coeff(i) == data[i*innerStride]);
diagonal.cpp 38 VERIFY(m1.template diagonal<N1>().RowsAtCompileTime == m1.diagonal(N1).size());
39 VERIFY(m1.template diagonal<N2>().RowsAtCompileTime == m1.diagonal(N2).size());
geo_eulerangles.cpp 30 VERIFY((ea-eabis).norm() <= test_precision<Scalar>());
33 VERIFY(0 < eabis[0] || test_isMuchSmallerThan(eabis[0], Scalar(1)));
  /external/eigen/test/eigen2/
eigen2_adjoint.cpp 51 VERIFY(ei_isApprox((s1 * v1 + s2 * v2).eigen2_dot(v3), s1 * v1.eigen2_dot(v3) + s2 * v2.eigen2_dot(v3), largerEps));
52 VERIFY(ei_isApprox(v3.eigen2_dot(s1 * v1 + s2 * v2), ei_conj(s1)*v3.eigen2_dot(v1)+ei_conj(s2)*v3.eigen2_dot(v2), largerEps));
62 VERIFY(ei_isApprox(v1.eigen2_dot(square * v2), (square.adjoint() * v1).eigen2_dot(v2), largerEps));
eigen2_sparse_basic.cpp 154 VERIFY(( test_random_setter<RandomSetter<SparseMatrixType, StdMapTraits> >(m,refMat,nonzeroCoords) ));
156 VERIFY(( test_random_setter<RandomSetter<SparseMatrixType, StdUnorderedMapTraits> >(m,refMat,nonzeroCoords) ));
159 VERIFY(( test_random_setter<RandomSetter<SparseMatrixType, GoogleDenseHashMapTraits> >(m,refMat,nonzeroCoords) ));
162 VERIFY(( test_random_setter<RandomSetter<SparseMatrixType, GoogleSparseHashMapTraits> >(m,refMat,nonzeroCoords) ));
300 VERIFY(countFalseNonZero+countTrueNonZero == m2.nonZeros());
303 VERIFY(countTrueNonZero==m2.nonZeros());
eigen2_svd.cpp 62 for(int i = 0; i < rows; i++) VERIFY(positive.diagonal()[i] >= 0); // cheap necessary (not sufficient) condition for positivity
68 for(int i = 0; i < rows; i++) VERIFY(positive.diagonal()[i] >= 0); // cheap necessary (not sufficient) condition for positivity
eigen2_eigensolver.cpp 63 VERIFY((symmA * _evec).isApprox(_evec * _eval.asDiagonal(), largerEps));
74 VERIFY((symmA * _evec).isApprox(symmB * (_evec * _eval.asDiagonal()), largerEps));
88 VERIFY((symmA * eiSymm.eigenvectors()).isApprox(
92 VERIFY((symmA * eiSymmGen.eigenvectors()).isApprox(
eigen2_submatrices.cpp 125 VERIFY(ei_real(ones.col(c1).sum()) == RealScalar(rows));
126 VERIFY(ei_real(ones.row(r1).sum()) == RealScalar(cols));
128 VERIFY(ei_real(ones.col(c1).eigen2_dot(ones.col(c2))) == RealScalar(rows));
129 VERIFY(ei_real(ones.row(r1).eigen2_dot(ones.row(r2))) == RealScalar(cols));
eigen2_regression.cpp 61 VERIFY(ei_abs(error) < ei_abs(tolerance));
77 VERIFY(ei_abs(error) < ei_abs(tolerance));
  /external/eigen/unsupported/test/
polynomialutils.cpp 46 VERIFY( evalToZero );
87 VERIFY( eval );
  /external/webrtc/talk/media/webrtc/
webrtcvoe.h 50 // VERIFY, to ensure that there are no leaks at shutdown
51 ~scoped_voe_engine() { if (ptr) VERIFY(webrtc::VoiceEngine::Delete(ptr)); }
55 VERIFY(webrtc::VoiceEngine::Delete(ptr));
  /external/v8/test/unittests/wasm/
ast-decoder-unittest.cc 39 #define EXPECT_VERIFIES(env, x) Verify(kSuccess, env, x, x + arraysize(x))
41 #define EXPECT_FAILURE(env, x) Verify(kError, env, x, x + arraysize(x))
46 Verify(kSuccess, env, code, code + arraysize(code)); \
53 Verify(kError, env, code, code + arraysize(code)); \
56 #define VERIFY(...) \
59 Verify(kSuccess, &env_v_i, code, code + sizeof(code)); \
98 void Verify(ErrorCode expected, FunctionEnv* env, const byte* start,
201 Verify(kSuccess, &env_v_v, code, code);
202 Verify(kError, &env_i_i, code, code);
283 Verify(kError, &env_i_i, code, code + size)
    [all...]
  /external/apache-harmony/security/src/test/api/java.injected/java/security/
SignatureTest.java 66 assertEquals("state", Signature.VERIFY, s.getState());
77 assertEquals("state", Signature.VERIFY, s.getState());
129 * Class under test for boolean verify(byte[])
135 s.verify(b);
142 s.verify(b);
148 s.verify(b);
149 assertEquals("state", Signature.VERIFY, s.getState());
150 assertTrue("verify() failed", s.runEngineVerify);
154 * Class under test for boolean verify(byte[], int, int)
160 s.verify(b, 0, 3)
306 public void verify(PublicKey key) { method in class:SignatureTest.MyCertificate
309 public void verify(PublicKey key, String sigProvider) { method in class:SignatureTest.MyCertificate
    [all...]
  /external/clang/test/Preprocessor/
feature_tests.c 1 // RUN: %clang_cc1 %s -triple=i686-apple-darwin9 -verify -DVERIFY
57 #ifdef VERIFY
  /system/core/gatekeeperd/
IGateKeeperService.h 32 VERIFY = IBinder::FIRST_CALL_TRANSACTION + 1,
72 virtual int verify(uint32_t uid, const uint8_t *enrolled_password_handle,
  /libcore/ojluni/src/main/java/java/security/
Signature.java 63 * <p> A Signature object can be used to generate and verify digital
90 * {@link #sign() sign} methods and the {@link #verify(byte[]) verify}
246 protected final static int VERIFY = 3;
548 state = VERIFY;
592 state = VERIFY;
705 * reset and available to verify another signature from the identity
717 public final boolean verify(byte[] signature) throws SignatureException { method in class:Signature
718 if (state == VERIFY) {
732 * reset and available to verify another signature from the identit
753 public final boolean verify(byte[] signature, int offset, int length) method in class:Signature
    [all...]

Completed in 746 milliseconds

1 2 34 5 6 7 8 9