HomeSort by relevance Sort by last modified time
    Searched defs:ones (Results 1 - 25 of 28) sorted by null

1 2

  /external/eigen/doc/snippets/
ComplexEigenSolver_eigenvalues.cpp 1 MatrixXcf ones = MatrixXcf::Ones(3,3); variable
2 ComplexEigenSolver<MatrixXcf> ces(ones, /* computeEigenvectors = */ false);
3 cout << "The eigenvalues of the 3x3 matrix of ones are:"
ComplexEigenSolver_eigenvectors.cpp 1 MatrixXcf ones = MatrixXcf::Ones(3,3); variable
2 ComplexEigenSolver<MatrixXcf> ces(ones);
3 cout << "The first eigenvector of the 3x3 matrix of ones is:"
EigenSolver_eigenvalues.cpp 1 MatrixXd ones = MatrixXd::Ones(3,3); variable
2 EigenSolver<MatrixXd> es(ones, false);
3 cout << "The eigenvalues of the 3x3 matrix of ones are:"
EigenSolver_eigenvectors.cpp 1 MatrixXd ones = MatrixXd::Ones(3,3); variable
2 EigenSolver<MatrixXd> es(ones);
3 cout << "The first eigenvector of the 3x3 matrix of ones is:"
MatrixBase_operatorNorm.cpp 1 MatrixXd ones = MatrixXd::Ones(3,3); variable
2 cout << "The operator norm of the 3x3 matrix of ones is "
3 << ones.operatorNorm() << endl;
SelfAdjointEigenSolver_eigenvalues.cpp 1 MatrixXd ones = MatrixXd::Ones(3,3); variable
2 SelfAdjointEigenSolver<MatrixXd> es(ones);
3 cout << "The eigenvalues of the 3x3 matrix of ones are:"
SelfAdjointEigenSolver_eigenvectors.cpp 1 MatrixXd ones = MatrixXd::Ones(3,3); variable
2 SelfAdjointEigenSolver<MatrixXd> es(ones);
3 cout << "The first eigenvector of the 3x3 matrix of ones is:"
SelfAdjointView_operatorNorm.cpp 1 MatrixXd ones = MatrixXd::Ones(3,3); variable
2 cout << "The operator norm of the 3x3 matrix of ones is "
3 << ones.selfadjointView<Lower>().operatorNorm() << endl;
MatrixBase_eigenvalues.cpp 1 MatrixXd ones = MatrixXd::Ones(3,3); variable
2 VectorXcd eivals = ones.eigenvalues();
3 cout << "The eigenvalues of the 3x3 matrix of ones are:" << endl << eivals << endl;
SelfAdjointView_eigenvalues.cpp 1 MatrixXd ones = MatrixXd::Ones(3,3); variable
2 VectorXd eivals = ones.selfadjointView<Lower>().eigenvalues();
3 cout << "The eigenvalues of the 3x3 matrix of ones are:" << endl << eivals << endl;
  /external/chromium/net/disk_cache/
bitmap_unittest.cc 120 char ones[kMapSize]; local
122 memset(ones, 0xff, kMapSize);
128 EXPECT_EQ(0, memcmp(ones, map.GetMap(), kMapSize));
221 // Almost the same test as FindNextSetBit, but find zeros instead of ones.
  /external/libvpx/libvpx/vp8/common/x86/
loopfilter_mmx.asm 186 paddsw mm5, [GLOBAL(ones)]
187 paddsw mm1, [GLOBAL(ones)]
501 paddsw mm5, [GLOBAL(ones)]
503 paddsw mm1, [GLOBAL(ones)]
1740 ones: label
    [all...]
loopfilter_sse2.asm 230 movdqa xmm2, [GLOBAL(ones)]
1627 ones: label
    [all...]
  /external/marisa-trie/tests/
vector-test.cc 218 std::vector<marisa::UInt32> zeros, ones; local
223 (bit ? ones : zeros).push_back(i);
242 for (marisa::UInt32 i = 0; i < ones.size(); ++i) {
243 ASSERT(bv.select1(i) == ones[i]);
268 for (marisa::UInt32 i = 0; i < ones.size(); ++i) {
269 ASSERT(bv.select1(i) == ones[i]);
  /external/marisa-trie/v0_1_5/tests/
vector-test.cc 222 std::vector<marisa_alpha::UInt32> zeros, ones; local
227 (bit ? ones : zeros).push_back(i);
246 for (marisa_alpha::UInt32 i = 0; i < ones.size(); ++i) {
247 ASSERT(bv.select1(i) == ones[i]);
272 for (marisa_alpha::UInt32 i = 0; i < ones.size(); ++i) {
273 ASSERT(bv.select1(i) == ones[i]);
  /libcore/luni/src/test/java/libcore/java/util/
OldFormatterTest.java 32 Formattable ones = new Formattable() { local
51 assertEquals("aaa 111?", new Formatter().format("aaa %s?", ones).toString());
52 assertEquals("aaa 111 bbb 222?", new Formatter().format("aaa %s bbb %s?", ones, twos).toString());
  /external/eigen/test/
geo_homogeneous.cpp 30 ones = VectorType::Ones(); local
42 hm0 << m0, ones.transpose();
block.cpp 30 ones = MatrixType::Ones(rows, cols); local
99 VERIFY(internal::real(ones.col(c1).sum()) == RealScalar(rows));
100 VERIFY(internal::real(ones.row(r1).sum()) == RealScalar(cols));
102 VERIFY(internal::real(ones.col(c1).dot(ones.col(c2))) == RealScalar(rows));
103 VERIFY(internal::real(ones.row(r1).dot(ones.row(r2))) == RealScalar(cols));
  /libcore/luni/src/test/java/libcore/sqlite/
AbstractSqlTest.java 57 private final String[] ones = {"hello!", "goodbye"}; field in class:AbstractSqlTest
72 ones_updated = new String[ones.length];
73 for (int i = 0; i < ones.length; i++) {
74 ones_updated[i] = ones[i] + twos[i];
123 for (int i = 0; i < ones.length; i++) {
124 firstStmt.execute("insert into tbl1 values('" + ones[i] + "',"
127 assertAllFromTbl1(firstStmt, ones, twos);
134 * @param ones the expected values of the column 'one'
138 private void assertAllFromTbl1(Statement stmt, String[] ones, short[] twos)
143 assertTrue(i < ones.length)
    [all...]
  /external/eigen/test/eigen2/
eigen2_submatrices.cpp 55 ones = MatrixType::Ones(rows, cols), local
131 VERIFY(ei_real(ones.col(c1).sum()) == RealScalar(rows));
132 VERIFY(ei_real(ones.row(r1).sum()) == RealScalar(cols));
134 VERIFY(ei_real(ones.col(c1).eigen2_dot(ones.col(c2))) == RealScalar(rows));
135 VERIFY(ei_real(ones.row(r1).eigen2_dot(ones.row(r2))) == RealScalar(cols));
  /external/openfst/src/extensions/ngram/
bitmap-index.cc 29 // the number of ones.
67 const uint64 ones = ~zero; local
69 (ones >> (kStorageBitSize - (end & kStorageBlockMask))));
133 const uint64 ones = ~zero; local
141 uint64 mask = ones;
143 mask = ones >> (-size_ & BitmapIndex::kStorageBlockMask);
  /external/mdnsresponder/mDNSPosix/
mDNSUNP.c 73 int block, ones=0xffff, ones_in_block; local
76 block = ones & (ones << (bits_in_block-ones_in_block));
  /external/libvpx/libvpx/vp8/common/mips/dspr2/
loopfilter_filters_dspr2.c 62 uint32_t ones = 0xFFFFFFFF; local
134 "pick.qb %[hev1], %[ones], $0 \n\t"
146 "pick.qb %[s2], $0, %[ones] \n\t"
151 [q1] "r" (q1), [ones] "r" (ones), [flimit] "r" (flimit)
    [all...]
  /external/bison/lib/
bbitset.h 125 void (*ones) (bitset); member in struct:bitset_vtable
206 #define BITSET_ONES_(DST) (DST)->b.vtable->ones (DST)
  /external/opencv/cv/src/
cvfundam.cpp 1202 CvMat* ones = 0; local
    [all...]

Completed in 571 milliseconds

1 2