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

1 2 3 4

  /external/eigen/doc/snippets/
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;
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;
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_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;
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_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;
  /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/qemu/slirp/
if.c 104 ttyp->ones = 0;
111 if (++ttyp->ones >= 5)
116 ttyp->ones = ttyp->zeros = 0;
  /external/qemu/slirp-android/
if.c 104 ttyp->ones = 0;
111 if (++ttyp->ones >= 5)
116 ttyp->ones = ttyp->zeros = 0;
  /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/webkit/Tools/Scripts/webkitpy/common/checkout/
changelog_unittest.py 50 executables like svn in front of the Cygwin ones in their paths.
  /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]);
  /external/llvm/test/Bindings/Ocaml/
target.ml 8 little ones. *)
  /external/yaffs2/yaffs2/
Kconfig 38 the ones from the generic MTD-NAND driver.
  /external/eigen/test/
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));
geo_homogeneous.cpp 30 ones = VectorType::Ones(); local
42 hm0 << m0, ones.transpose();
  /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/icu4c/samples/ufortune/resources/
fortune_resources.mak 35 # clear out the built-in ones (for .c and the like), and add

Completed in 828 milliseconds

1 2 3 4