HomeSort by relevance Sort by last modified time
    Searched refs:ones (Results 1 - 25 of 325) 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;
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;
  /external/llvm/test/MC/X86/
pr28547.s 3 ones: label
5 vmovaps xmm15, xmmword ptr [rip+ones] # +1.0, +1.0, +1.0, +1.0
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/
tls-multi-got-1-2.s 10 .irp ones,0,1,2,3,4,5,6,7,8,9
11 one_sym \thou\hund\tens\ones
multi-got-no-shared-1.s 22 .irp ones,0,1,2,3,4,5,6,7,8,9
23 one_sym \thou\hund\tens\ones
multi-got-no-shared-2.s 20 .irp ones,0,1,2,3,4,5,6,7,8,9
21 one_sym \thou\hund\tens\ones
tls-multi-got-1-1.s 10 .irp ones,0,1,2,3,4,5,6,7,8,9
11 one_sym \thou\hund\tens\ones
  /external/libvpx/libvpx/vpx_dsp/mips/
loopfilter_masks_dspr2.h 35 uint32_t ones = 0xFFFFFFFF; local
105 "pick.qb %[hev1], %[ones], $0 \n\t"
117 "pick.qb %[s2], $0, %[ones] \n\t"
122 [ones] "r"(ones), [flimit] "r"(flimit));
134 uint32_t ones = 0xFFFFFFFF; local
212 "pick.qb %[flat1], $0, %[ones] \n\t"
233 [thresh] "r"(thresh), [flat_thresh] "r"(flat_thresh), [ones] "r"(ones));
245 "pick.qb %[hev1], %[ones], $0 \n\t
273 uint32_t ones = 0xFFFFFFFF; local
    [all...]
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-spu/
ear.s 20 #new ones don't need to be 16 bytes apart
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/bfin/
bit.s 51 .global ones
52 ones: label
53 R5.l = ones r0;
54 r7.L = Ones R2;
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
le-fpconst.d 4 # Not all arm targets are bi-endian, so only run this test on ones
  /external/libvpx/libvpx/vpx_dsp/ppc/
hadamard_vsx.c 77 const uint16x8_t ones = vec_splat_u16(1); local
97 const int16x8_t b0 = vec_sra(a0, ones);
98 const int16x8_t b1 = vec_sra(a1, ones);
99 const int16x8_t b2 = vec_sra(a2, ones);
100 const int16x8_t b3 = vec_sra(a3, ones);
  /libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/
DoubleStreamTestDataProvider.java 39 private static final double[] ones = new double[100]; field in class:DoubleStreamTestDataProvider
56 for (int i = 0; i < ones.length; i++) {
57 ones[i] = 1;
73 {"100x[1]", ones},
IntStreamTestDataProvider.java 39 private static final int[] ones = new int[100]; field in class:IntStreamTestDataProvider
56 for (int i = 0; i < ones.length; i++) {
57 ones[i] = 1;
73 {"100x[1]", ones},
LongStreamTestDataProvider.java 39 private static final long[] ones = new long[100]; field in class:LongStreamTestDataProvider
56 for (int i = 0; i < ones.length; i++) {
57 ones[i] = 1;
73 {"100x[1]", ones},
  /libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/
DoubleStreamTestDataProvider.java 41 private static final double[] ones = new double[100]; field in class:DoubleStreamTestDataProvider
60 for (int i = 0; i < ones.length; i++) {
61 ones[i] = 1;
78 {"100x[1]", ones},
IntStreamTestDataProvider.java 41 private static final int[] ones = new int[100]; field in class:IntStreamTestDataProvider
59 for (int i = 0; i < ones.length; i++) {
60 ones[i] = 1;
77 {"100x[1]", ones},

Completed in 519 milliseconds

1 2 3 4 5 6 7 8 91011>>