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

1 2 3 45 6 7 8 9

  /external/eigen/test/
dontalign.cpp 40 VERIFY(square.determinant() != Scalar(0));
hessenberg.cpp 27 VERIFY(H(row,col) == (typename MatrixType::Scalar)0);
mapped_matrix.cpp 109 // verify that map-to-const don't have LvalueBit
111 VERIFY( !(internal::traits<Map<ConstPlainObjectType> >::Flags & LvalueBit) );
112 VERIFY( !(internal::traits<Map<ConstPlainObjectType, Aligned> >::Flags & LvalueBit) );
113 VERIFY( !(Map<ConstPlainObjectType>::Flags & LvalueBit) );
114 VERIFY( !(Map<ConstPlainObjectType, Aligned>::Flags & LvalueBit) );
product.h 88 VERIFY(areNotApprox(m1.transpose()*m2,m2.transpose()*m1));
97 VERIFY(areNotApprox(res,square + m2 * m1.transpose()));
109 VERIFY(areNotApprox(res,square - m2 * m1.transpose()));
133 VERIFY(areNotApprox(res2,square2 + m2.transpose() * m1));
permutationmatrices.cpp 51 VERIFY((lp*lp.inverse()).toDenseMatrix().isIdentity());
52 VERIFY((lv.asPermutation()*lv.asPermutation().inverse()).toDenseMatrix().isIdentity());
53 VERIFY((MapLeftPerm(lv.data(),lv.size())*MapLeftPerm(lv.data(),lv.size()).inverse()).toDenseMatrix().isIdentity());
sparseqr.cpp 82 // VERIFY((dA * refX - b).norm() * 2 > (A * x - b).norm() );
90 VERIFY(idM.isApprox(QtQ));
householder.cpp 90 VERIFY(hseq.length() == hc.size());
91 VERIFY(hseq.shift() == shift);
umeyama.cpp 117 VERIFY(error < Scalar(40)*std::numeric_limits<Scalar>::epsilon());
155 VERIFY(error < Scalar(16)*std::numeric_limits<Scalar>::epsilon());
jacobisvd.cpp 101 VERIFY( test_isApprox(residual_y,residual) || residual < residual_y );
105 VERIFY( test_isApprox(residual_y,residual) || residual < residual_y );
133 VERIFY(guard<10);
316 // all this function does is verify we don't iterate infinitely on nan/inf values
321 VERIFY(sub(some_inf, some_inf) != sub(some_inf, some_inf));
325 VERIFY(nan != nan);
geo_orthomethods.cpp 40 VERIFY(mat3.isUnitary());
schur_complex.cpp 28 VERIFY(T(row,col) == (typename MatrixType::Scalar)0);
  /external/eigen/test/eigen2/
eigen2_qr.cpp 62 VERIFY(mat.qr().isFullRank());
65 //VERIFY(!mat.qr().isFullRank());
product.h 93 VERIFY(areNotApprox(m1.transpose()*m2,m2.transpose()*m1));
102 VERIFY(areNotApprox(res,square + m2 * m1.transpose()));
126 VERIFY(areNotApprox(res2,square2 + m2.transpose() * m1));
  /external/webrtc/webrtc/p2p/base/
turnserver.cc 112 VERIFY(resp->AddAttribute(new cricket::StunErrorCodeAttribute(
359 VERIFY(response.AddAttribute(mapped_addr_attr));
420 // Verify the HMAC.
467 VERIFY(resp.AddAttribute(new StunByteStringAttribute(
469 VERIFY(resp.AddAttribute(new StunByteStringAttribute(
480 VERIFY(resp.AddAttribute(new StunAddressAttribute(
489 VERIFY(msg->AddAttribute(
643 VERIFY(response.AddAttribute(mapped_addr_attr));
644 VERIFY(response.AddAttribute(relayed_addr_attr));
645 VERIFY(response.AddAttribute(lifetime_attr))
    [all...]
turnport.cc 806 // Verify that the data came from somewhere we think we have a permission for.
886 VERIFY(!hash_.empty());
887 VERIFY(msg->AddAttribute(new StunByteStringAttribute(
889 VERIFY(msg->AddAttribute(new StunByteStringAttribute(
891 VERIFY(msg->AddAttribute(new StunByteStringAttribute(
893 VERIFY(msg->AddMessageIntegrity(hash()));
902 VERIFY(ComputeStunCredentialHash(credentials_.username, realm_,
    [all...]
  /external/autotest/scheduler/
monitor_db_functional_test.py 51 _PidfileType = enum.Enum('verify', 'cleanup', 'repair', 'job', 'gather',
239 # such paths look like hosts/host1/1-verify, we'll grab the end
407 'hosts/host1/1-verify', drone_manager.AUTOSERV_PID_FILE)
436 self._run_dispatcher() # launches verify
439 self.mock_drone_manager.finish_process(_PidfileType.VERIFY)
589 host=host, task=models.SpecialTask.Task.VERIFY)
597 self.mock_drone_manager.finish_process(_PidfileType.VERIFY)
605 self.mock_drone_manager.finish_process(_PidfileType.VERIFY,
670 self.mock_drone_manager.finish_process(_PidfileType.VERIFY,
681 self._run_dispatcher() # launches verify
    [all...]
prejob_task.py 6 Prejob tasks _usually_ run before a job and verify the state of a machine.
15 host=C1, unlocked, is_active=0, is_complete=0, type=Verify
17 of type=Verify, against the C1 host. While the special task is running
129 # verify etc. The number of repair jobs is limited to the specific
179 TASK_TYPE = models.SpecialTask.Task.VERIFY
193 logging.info("starting verify on %s", self.host.hostname)
198 # Delete any queued manual reverifies for this host. One verify will do
200 self.remove_special_tasks(models.SpecialTask.Task.VERIFY,
250 task=models.SpecialTask.Task.VERIFY)
267 """Task to reset a DUT, including cleanup and verify.""
    [all...]
  /external/webrtc/webrtc/base/
fakesslidentity.h 47 VERIFY(SSLIdentity::PemToDer(kPemTypeCertificate, data_, &der_string));
win32window.cc 67 VERIFY(::DestroyWindow(wnd_) != FALSE);
fileutils.cc 159 VERIFY(IsFolder(old_path));
189 VERIFY(IsFolder(folder));
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
SignatureTest.java 118 assertEquals("state", MySignature1.VERIFY, s.getState());
138 assertEquals("state", MySignature1.VERIFY, s.getState());
277 * Class under test for boolean verify(byte[])
283 s.verify(b);
290 s.verify(b);
296 s.verify(b);
297 assertEquals("state", MySignature1.VERIFY, s.getState());
298 assertTrue("verify() failed", s.runEngineVerify);
302 * Class under test for boolean verify(byte[], int, int)
308 s.verify(b, 0, 3)
551 public void verify(PublicKey key) {} method in class:SignatureTest.MyCertificate
553 public void verify(PublicKey key, String sigProvider) {} method in class:SignatureTest.MyCertificate
    [all...]
  /system/gatekeeper/include/gatekeeper/
gatekeeper_messages.h 30 const uint32_t VERIFY = 1;
  /external/libpng/contrib/pngminus/
makevms.com 55 $ V = 'F$Verify(0)
86 $ VV=F$VERIFY(0)
89 $ VV='F$Verify(VV)
91 $ If V Then Set Verify
  /external/opencv3/samples/android/hello-android/
run.cmd 13 VERIFY BADVALUE 2>NUL
  /external/apache-harmony/security/src/test/impl/java.injected/java/security/
Signature_Impl2Test.java 146 s.verify(b);
151 s.verify(b);
152 assertEquals("Incorrect state", Signature.VERIFY, ((MySignature1) s)
154 assertTrue("verify() failed", ((MySignature1) s).runEngineVerify);
182 s.verify(b, 0, 3);
189 s.verify(b, 0, 5);
195 s.verify(b, 0, 3);
196 assertTrue("verify() failed", MySignature2.runEngineVerify);
244 public void verify(PublicKey key) { method in class:Signature_Impl2Test.MyCertificate
247 public void verify(PublicKey key, String sigProvider) method in class:Signature_Impl2Test.MyCertificate
    [all...]

Completed in 307 milliseconds

1 2 3 45 6 7 8 9