Searched refs:compute (Results 1 - 25 of 166) sorted by relevance

1234567

/external/clang/test/Analysis/inlining/
H A Deager-reclamation-path-notes.c10 int compute() { function
21 use(p, compute());
33 use2(p, compute());
/external/eigen/doc/snippets/
H A DComplexSchur_compute.cpp3 schur.compute(A);
5 schur.compute(A.inverse());
H A DEigenSolver_compute.cpp3 es.compute(A, /* computeEigenvectors = */ false);
5 es.compute(A + MatrixXf::Identity(4,4), false); // re-use es to compute eigenvalues of A+I
H A DHessenbergDecomposition_compute.cpp3 hd.compute(A);
5 hd.compute(2*A); // re-use hd to compute and store decomposition of 2A
H A DRealSchur_compute.cpp3 schur.compute(A, /* computeU = */ false);
5 schur.compute(A.inverse(), /* computeU = */ false);
H A DSelfAdjointEigenSolver_SelfAdjointEigenSolver.cpp4 es.compute(A);
6 es.compute(A + Matrix4f::Identity(4,4)); // re-use es to compute eigenvalues of A+I
H A DSelfAdjointEigenSolver_compute_MatrixType.cpp4 es.compute(A);
6 es.compute(A + MatrixXf::Identity(4,4)); // re-use es to compute eigenvalues of A+I
H A DTridiagonalization_compute.cpp4 tri.compute(A);
7 tri.compute(2*A); // re-use tri to compute eigenvalues of 2A
H A DGeneralizedEigenSolver.cpp4 ges.compute(A, B);
H A DSelfAdjointEigenSolver_compute_MatrixType2.cpp8 es.compute(B,A,false);
H A DComplexEigenSolver_compute.cpp5 ces.compute(A);
H A DRealQZ_compute.cpp4 qz.compute(A,B); // A = Q S Z, B = Q T Z
/external/eigen/doc/examples/
H A DTutorialLinAlgComputeTwice.cpp16 llt.compute(A);
21 llt.compute(A);
/external/javassist/src/main/javassist/compiler/ast/
H A DDoubleConst.java44 public ASTree compute(int op, ASTree right) { method in class:DoubleConst
61 return compute(op, this.value, right.value, newType);
65 return compute(op, this.value, (double)right.value, this.type);
68 private static DoubleConst compute(int op, double value1, double value2, method in class:DoubleConst
/external/eigen/Eigen/src/Eigenvalues/
H A DGeneralizedSelfAdjointEigenSolver.h35 * Call the function compute() to compute the eigenvalues and eigenvectors of
59 * perform decompositions via compute(). This constructor
71 * intends to perform decompositions via compute(). The \p size
75 * \sa compute() for an example
90 * This constructor calls compute(const MatrixType&, const MatrixType&, int)
91 * to compute the eigenvalues and (if requested) the eigenvectors of the
105 * \sa compute(const MatrixType&, const MatrixType&, int)
111 compute(matA, matB, options);
139 * The implementation uses LLT to compute th
164 compute(const MatrixType& matA, const MatrixType& matB, int options) function in class:Eigen::GeneralizedSelfAdjointEigenSolver
[all...]
/external/eigen/unsupported/test/
H A Dsvd_common.h161 svd.compute(a, 0);
169 svd.compute(a, ComputeThinU);
173 svd.compute(a, ComputeThinV);
180 VERIFY_RAISES_ASSERT(svd.compute(a, ComputeThinU))
181 VERIFY_RAISES_ASSERT(svd.compute(a, ComputeThinV))
203 svd.compute(MatrixType::Constant(10,10,some_inf), ComputeFullU | ComputeFullV);
207 svd.compute(MatrixType::Constant(10,10,some_nan), ComputeFullU | ComputeFullV);
211 svd.compute(m, ComputeFullU | ComputeFullV);
215 svd.compute(m, ComputeFullU | ComputeFullV);
229 svd.compute(
[all...]
/external/eigen/test/
H A Dnomalloc.cpp130 Eigen::LLT<Matrix> LLT; LLT.compute(A);
133 Eigen::LDLT<Matrix> LDLT; LDLT.compute(A);
138 Eigen::HessenbergDecomposition<ComplexMatrix> hessDecomp; hessDecomp.compute(complexA);
139 Eigen::ComplexSchur<ComplexMatrix> cSchur(size); cSchur.compute(complexA);
140 Eigen::ComplexEigenSolver<ComplexMatrix> cEigSolver; cEigSolver.compute(complexA);
141 Eigen::EigenSolver<Matrix> eigSolver; eigSolver.compute(A);
142 Eigen::SelfAdjointEigenSolver<Matrix> saEigSolver(size); saEigSolver.compute(saA);
143 Eigen::Tridiagonalization<Matrix> tridiag; tridiag.compute(saA);
146 Eigen::PartialPivLU<Matrix> ppLU; ppLU.compute(A);
149 Eigen::FullPivLU<Matrix> fpLU; fpLU.compute(
[all...]
H A Djacobisvd.cpp262 svd.compute(a, 0);
270 svd.compute(a, ComputeThinU);
275 svd.compute(a, ComputeThinV);
281 VERIFY_RAISES_ASSERT(svd_fullqr.compute(a, ComputeFullU|ComputeThinV))
282 VERIFY_RAISES_ASSERT(svd_fullqr.compute(a, ComputeThinU|ComputeThinV))
283 VERIFY_RAISES_ASSERT(svd_fullqr.compute(a, ComputeThinU|ComputeFullV))
287 VERIFY_RAISES_ASSERT(svd.compute(a, ComputeThinU))
288 VERIFY_RAISES_ASSERT(svd.compute(a, ComputeThinV))
322 svd.compute(MatrixType::Constant(10,10,some_inf), ComputeFullU | ComputeFullV);
326 svd.compute(MatrixTyp
[all...]
H A Dschur_complex.cpp40 // Test whether compute() and constructor returns same result
43 cs1.compute(A);
52 cs3.setMaxIterations(ComplexSchur<MatrixType>::m_maxIterationsPerRow * size).compute(A);
56 cs3.setMaxIterations(1).compute(A);
62 cs3.setMaxIterations(1).compute(Atriangular); // triangular matrices do not need any iterations
/external/chromium_org/third_party/mesa/src/src/gallium/tests/trivial/
H A DMakefile22 compute.c
/external/mesa3d/src/gallium/tests/trivial/
H A DMakefile22 compute.c
/external/chromium_org/native_client_sdk/src/examples/api/core/
H A Dexample.js37 function setStats(nacl, compute, total) {
43 statRoundEl.textContent = (compute / itrMax) + ' ms';
/external/deqp/framework/opengl/
H A DgluContextInfo.hpp41 CachedValue (ComputeValue compute = ComputeValue(), const T& defaultValue = T())
42 : m_compute (compute)
/external/llvm/include/llvm/CodeGen/
H A DRegisterClassInfo.h67 void compute(const TargetRegisterClass *RC) const;
73 compute(RC);
/external/eigen/Eigen/src/IterativeLinearSolvers/
H A DBasicPreconditioners.h48 compute(mat);
78 DiagonalPreconditioner& compute(const MatType& mat) function in class:Eigen::DiagonalPreconditioner
141 IdentityPreconditioner& compute(const MatrixType& ) { return *this; } function in class:Eigen::IdentityPreconditioner

Completed in 369 milliseconds

1234567