HomeSort by relevance Sort by last modified time
    Searched refs:VERIFY (Results 51 - 75 of 243) sorted by null

1 23 4 5 6 7 8 910

  /external/autotest/client/site_tests/security_OpenSSLBlacklist/
security_OpenSSLBlacklist.py 12 VERIFY = OPENSSL + ' verify'
17 def verify(self, blacklist='/dev/null'): member in class:security_OpenSSLBlacklist
19 (blacklist, VERIFY, self.ca, self.cert))
38 if not self.verify():
39 raise error.TestFail('Certificate does not verify normally.')
41 if self.verify(b):
43 if not self.verify(self.bogus_blacklist):
44 raise error.TestFail('Certificate does not verify with nonempty blacklist.')
  /external/eigen/test/
incomplete_cholesky.cpp 61 VERIFY(solver.preconditioner().info() == Eigen::Success);
62 VERIFY(solver.info() == Eigen::Success);
eigensolver_complex.cpp 60 VERIFY(vec1.cols() == 1);
61 VERIFY(vec2.cols() == 1);
62 VERIFY(vec1.rows() == vec2.rows());
68 VERIFY( find_pivot(tol, diffs) );
116 VERIFY((eiz.eigenvalues().cwiseEqual(0)).all());
141 VERIFY((ei3.eigenvectors().transpose()*ei3.eigenvectors().transpose()).eval().isIdentity());
geo_alignedbox.cpp 50 VERIFY(b0.contains(p0*s1+(Scalar(1)-s1)*p1));
51 VERIFY(b0.contains(b0.center()));
55 VERIFY(b2.contains(b0));
56 VERIFY(b2.contains(b1));
65 VERIFY(box1.intersects(box2) == !box1.intersection(box2).isEmpty());
78 VERIFY(b0.contains(r));
qr_fullpivoting.cpp 32 VERIFY(!qr.isInjective());
33 VERIFY(!qr.isInvertible());
34 VERIFY(!qr.isSurjective());
93 VERIFY(qr.isInjective());
94 VERIFY(qr.isInvertible());
95 VERIFY(qr.isSurjective());
qtvector.cpp 47 VERIFY((size_t)&(v[22]) == (size_t)&(v[21]) + sizeof(MatrixType));
56 VERIFY(v[i]==w[(i-23)%w.size()]);
82 VERIFY((size_t)&(v[22]) == (size_t)&(v[21]) + sizeof(TransformType));
91 VERIFY(v[i].matrix()==w[(i-23)%w.size()].matrix());
117 VERIFY((size_t)&(v[22]) == (size_t)&(v[21]) + sizeof(QuaternionType));
126 VERIFY(v[i].coeffs()==w[(i-23)%w.size()].coeffs());
stdvector.cpp 37 VERIFY((internal::UIntPtr)&(v[22]) == (internal::UIntPtr)&(v[21]) + sizeof(MatrixType));
46 VERIFY(v[i]==w[(i-23)%w.size()]);
72 VERIFY((internal::UIntPtr)&(v[22]) == (internal::UIntPtr)&(v[21]) + sizeof(TransformType));
81 VERIFY(v[i].matrix()==w[(i-23)%w.size()].matrix());
107 VERIFY((internal::UIntPtr)&(v[22]) == (internal::UIntPtr)&(v[21]) + sizeof(QuaternionType));
116 VERIFY(v[i].coeffs()==w[(i-23)%w.size()].coeffs());
stdvector_overload.cpp 51 VERIFY((internal::UIntPtr)&(v[22]) == (internal::UIntPtr)&(v[21]) + sizeof(MatrixType));
60 VERIFY(v[i]==w[(i-23)%w.size()]);
86 VERIFY((internal::UIntPtr)&(v[22]) == (internal::UIntPtr)&(v[21]) + sizeof(TransformType));
95 VERIFY(v[i].matrix()==w[(i-23)%w.size()].matrix());
121 VERIFY((internal::UIntPtr)&(v[22]) == (internal::UIntPtr)&(v[21]) + sizeof(QuaternionType));
130 VERIFY(v[i].coeffs()==w[(i-23)%w.size()].coeffs());
sparse_solver.h 57 VERIFY(solver.info() == Success);
65 VERIFY(oldb.isApprox(b) && "sparse solver testing: the rhs should not be modified!");
66 VERIFY(x.isApprox(refX,test_precision<Scalar>()));
70 VERIFY(solver.info() == Success && "solving failed when using analyzePattern/factorize API");
71 VERIFY(oldb.isApprox(b) && "sparse solver testing: the rhs should not be modified!");
72 VERIFY(x.isApprox(refX,test_precision<Scalar>()));
78 VERIFY(solver.info() == Success && "factorization failed when using analyzePattern/factorize API");
80 VERIFY(solver.info() == Success && "solving failed when using analyzePattern/factorize API");
81 VERIFY(oldb.isApprox(b) && "sparse solver testing: the rhs should not be modified!");
82 VERIFY(x.isApprox(refX,test_precision<Scalar>()))
    [all...]
qr_colpivoting.cpp 31 VERIFY(rank == cod.rank());
32 VERIFY(cols - cod.rank() == cod.dimensionOfKernel());
33 VERIFY(!cod.isInjective());
34 VERIFY(!cod.isInvertible());
35 VERIFY(!cod.isSurjective());
56 // Verify that we get the same minimum-norm solution as the SVD.
76 VERIFY(rank == cod.rank());
77 VERIFY(Cols - cod.rank() == cod.dimensionOfKernel());
78 VERIFY(cod.isInjective() == (rank == Rows));
79 VERIFY(cod.isSurjective() == (rank == Cols))
    [all...]
ref.cpp 144 // verify that ref-to-const don't have LvalueBit
146 VERIFY( !(internal::traits<Ref<ConstPlainObjectType> >::Flags & LvalueBit) );
147 VERIFY( !(internal::traits<Ref<ConstPlainObjectType, Aligned> >::Flags & LvalueBit) );
148 VERIFY( !(Ref<ConstPlainObjectType>::Flags & LvalueBit) );
149 VERIFY( !(Ref<ConstPlainObjectType, Aligned>::Flags & LvalueBit) );
246 VERIFY( test_ref_overload_fun1(Ad)==1 );
247 VERIFY( test_ref_overload_fun1(rAd)==2 );
250 VERIFY( test_ref_overload_fun2(Ad)==4 );
251 VERIFY( test_ref_overload_fun2(Ad+Bd)==4 );
252 VERIFY( test_ref_overload_fun2(Af+Bf)==5 )
    [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);
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)
267 // verify that map-to-const don't have LvalueBit
269 VERIFY( !(internal::traits<Map<ConstPlainObjectType> >::Flags & LvalueBit) );
270 VERIFY( !(internal::traits<Map<ConstPlainObjectType, Aligned> >::Flags & LvalueBit) );
271 VERIFY( !(Map<ConstPlainObjectType>::Flags & LvalueBit) );
272 VERIFY( !(Map<ConstPlainObjectType, Aligned>::Flags & LvalueBit) );
swap.cpp 50 VERIFY(m1.data()==d2);
51 VERIFY(m2.data()==d1);
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) );
sparse_vector.cpp 45 VERIFY(int(nonzerocoords.size()) == v1.nonZeros());
49 VERIFY(nonzerocoords[j]==it.index());
50 VERIFY(it.value()==v1.coeff(it.index()));
51 VERIFY(it.value()==refV1.coeff(it.index()));
  /external/eigen/unsupported/test/
cxx11_runqueue.cpp 32 VERIFY(q.Empty());
101 VERIFY(q.Empty());
109 VERIFY(q.Empty());
148 VERIFY(!q.Empty());
226 VERIFY(q.Empty());
227 VERIFY(total.load() == 0);
EulerAngles.cpp 82 VERIFY(alphaRangeStart <= eabis[0] && eabis[0] <= alphaRangeEnd);
83 VERIFY(betaRangeStart <= eabis[1] && eabis[1] <= betaRangeEnd);
84 VERIFY(gammaRangeStart <= eabis[2] && eabis[2] <= gammaRangeEnd);
101 VERIFY_IS_APPROX(eabis, eabis2);// Verify that our estimation is the same as m.eulerAngles() is
112 VERIFY((ea-eabis).norm() <= test_precision<Scalar>());
115 VERIFY(0 < eabis[0] || test_isMuchSmallerThan(eabis[0], Scalar(1)));
121 VERIFY_IS_APPROX(eabis, eabis2);// Verify that the euler angles are still the same
mpreal_support.cpp 36 VERIFY(Eigen::internal::isApprox(A.array().abs2().sum(), A.squaredNorm()));
56 VERIFY( (S.selfadjointView<Lower>() * eig.eigenvectors()).isApprox(eig.eigenvectors() * eig.eigenvalues().asDiagonal(), NumTraits<mpreal>::dummy_precision()*1e3) );
polynomialutils.cpp 46 VERIFY( evalToZero );
87 VERIFY( eval );
  /external/vulkan-validation-layers/demos/
cube.cpp 47 #define VERIFY(x) assert(x)
49 #define VERIFY(x) ((void)(x))
565 VERIFY(result == vk::Result::eSuccess);
583 VERIFY(result == vk::Result::eSuccess);
706 VERIFY(result == vk::Result::eSuccess);
733 VERIFY(result == vk::Result::eSuccess);
754 VERIFY(result == vk::Result::eSuccess);
771 VERIFY(result == vk::Result::eSuccess);
795 VERIFY(result == vk::Result::eSuccess);
813 VERIFY(result == vk::Result::eSuccess)
    [all...]
  /external/webrtc/webrtc/base/
macsocketserver.cc 61 VERIFY(1 == sockets_.erase(s)); // found 1
237 VERIFY(noErr == CreateEvent(NULL, kEventClassSocketServer, kEventWakeUp, 0,
316 VERIFY(noErr == InstallApplicationEventHandler(
321 VERIFY(noErr == InstallEventLoopTimer(GetMainEventLoop(),
375 VERIFY(noErr == CreateEvent(NULL, kEventClassSocketServer, kEventWakeUp, 0,
  /external/autotest/scheduler/
monitor_db_cleanup_test.py 46 self.assertEquals(tasks[0].task, models.SpecialTask.Task.VERIFY)
74 self.assertEquals(tasks[0].task, models.SpecialTask.Task.VERIFY)
75 self.assertEquals(tasks[1].task, models.SpecialTask.Task.VERIFY)
  /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/clang/test/Preprocessor/
feature_tests.c 1 // RUN: %clang_cc1 %s -triple=i686-apple-darwin9 -verify -DVERIFY
57 #ifdef VERIFY

Completed in 154 milliseconds

1 23 4 5 6 7 8 910