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

1 2 3 4 5 6 7 8 91011>>

  /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;
MatrixBase_ones.cpp 1 cout << Matrix2d::Ones() << endl;
2 cout << 6 * RowVector4i::Ones() << endl;
MatrixBase_ones_int.cpp 1 cout << 6 * RowVectorXi::Ones(4) << endl;
2 cout << VectorXf::Ones(2) << 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;
MatrixBase_ones_int_int.cpp 1 cout << MatrixXi::Ones(2,3) << 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;
  /external/v8/test/mjsunit/
handle-count-ast.js 7 var ones = eval("[" + Array(12 * 1024).join("1,") + 1 + "]") variable
10 for (var i = 0; i < ones.length; i++) {
11 sum += ones[i];
  /external/webrtc/webrtc/build/sanitizers/
README 2 They're overriding the default ones for Chromium using our
  /ndk/tests/device/test-googletest-gnustl/jni/
Android.mk 3 # ones to build.
  /ndk/tests/device/test-googletest-stlport/jni/
Android.mk 3 # ones to build.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/asm/
auxvec.h 5 * for more of them, start the x86-specific ones at 32.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/asm/
auxvec.h 5 * for more of them, start the x86-specific ones at 32.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/asm/
auxvec.h 5 * for more of them, start the x86-specific ones at 32.
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/share/doc/mpfr/examples/
ReadMe 4 instead of the new ones, which are not compatible with MPFR 2.x.
  /external/libxml2/test/schemas/
decimal-2_0.xml 5 <!-- The good ones. -->
11 <!-- The bad ones. -->
decimal-3_0.xml 5 <!-- The good ones. -->
11 <!-- The bad ones. -->
decimal-1_0.xml 5 <!-- The good ones. -->
15 <!-- The bad ones. -->
  /ndk/tests/device/test-gnustl-full/unit/
strstream_buffer_read_test.cpp 3 * obsolete, and even if ones was mentioned in D7.1--D7.4 of
4 * Standard, we have no wish to spent time with repair ones.

Completed in 457 milliseconds

1 2 3 4 5 6 7 8 91011>>