Searched defs:compute (Results 1 - 25 of 78) sorted by relevance

1234

/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/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...]
H A DComplexEigenSolver.h38 * The main function in this class is compute(), which computes the
90 * perform decompositions via compute().
123 * This constructor calls compute() to compute the eigendecomposition.
133 compute(matrix, computeEigenvectors);
142 * function compute(const MatrixType& matrix, bool) has been called before
143 * to compute the eigendecomposition of a matrix, and
169 * function compute(const MatrixType& matrix, bool) has been called before
170 * to compute the eigendecomposition of a matrix.
202 * compute th
252 ComplexEigenSolver<MatrixType>::compute(const MatrixType& matrix, bool computeEigenvectors) function in class:Eigen::ComplexEigenSolver
[all...]
H A DComplexSchur.h40 * Call the function compute() to compute the Schur decomposition of
88 * intends to perform decompositions via compute(). The \p size
92 * \sa compute() for an example.
108 * This constructor calls compute() to compute the Schur decomposition.
120 compute(matrix, computeU);
129 * member function compute(const MatrixType& matrix, bool computeU)
130 * has been called before to compute the Schur decomposition of a
150 * member function compute(cons
316 ComplexSchur<MatrixType>& ComplexSchur<MatrixType>::compute(const MatrixType& matrix, bool computeU) function in class:Eigen::ComplexSchur
[all...]
H A DEigenSolver.h46 * Call the function compute() to compute the eigenvalues and eigenvectors of
109 * perform decompositions via EigenSolver::compute(const MatrixType&, bool).
111 * \sa compute() for an example.
138 * This constructor calls compute() to compute the eigenvalues
144 * \sa compute()
155 compute(matrix, computeEigenvectors);
164 * compute(const MatrixType&, bool) has been called before, and
186 * compute(cons
365 EigenSolver<MatrixType>::compute(const MatrixType& matrix, bool computeEigenvectors) function in class:Eigen::EigenSolver
[all...]
H A DGeneralizedEigenSolver.h44 * Call the function compute() to compute the generalized eigenvalues and eigenvectors of
113 * perform decompositions via EigenSolver::compute(const MatrixType&, bool).
115 * \sa compute() for an example.
143 * This constructor calls compute() to compute the generalized eigenvalues
146 * \sa compute()
158 compute(A, B, computeEigenvectors);
167 * compute(const MatrixType&, const MatrixType& bool) has been called before, and
190 * compute(cons
291 GeneralizedEigenSolver<MatrixType>::compute(const MatrixType& A, const MatrixType& B, bool computeEigenvectors) function in class:Eigen::GeneralizedEigenSolver
[all...]
H A DHessenbergDecomposition.h45 * Call the function compute() to compute the Hessenberg decomposition of a
94 * perform decompositions via compute(). The \p size parameter is only
98 * \sa compute() for an example.
113 * This constructor calls compute() to compute the Hessenberg
150 HessenbergDecomposition& compute(const MatrixType& matrix) function in class:Eigen::HessenbergDecomposition
169 * or the member function compute(const MatrixType&) has been called
170 * before to compute the Hessenberg decomposition of a matrix.
189 * or the member function compute(cons
[all...]
H A DTridiagonalization.h46 * decomposition. This class is used in SelfAdjointEigenSolver to compute the
49 * Call the function compute() to compute the tridiagonal decomposition of a
107 * perform decompositions via compute(). The \p size parameter is only
111 * \sa compute() for an example.
124 * This constructor calls compute() to compute the tridiagonal decomposition.
155 Tridiagonalization& compute(const MatrixType& matrix) function in class:Eigen::Tridiagonalization
169 * the member function compute(const MatrixType&) has been called before
170 * to compute th
[all...]
/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
H A DIntConst.java44 public ASTree compute(int op, ASTree right) { method in class:IntConst
/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
/external/eigen/unsupported/Eigen/src/IterativeSolvers/
H A DIncompleteLU.h31 compute(mat);
38 IncompleteLU& compute(const MatrixType& mat) function in class:Eigen::IncompleteLU
H A DScaling.h60 compute(matrix);
72 void compute (const MatrixType& mat) function in class:Eigen::IterScaling
139 * \sa compute()
143 compute (mat);
/external/llvm/lib/CodeGen/
H A DRegisterClassInfo.cpp76 /// compute - Compute the preferred allocation order for RC with reserved
79 void RegisterClassInfo::compute(const TargetRegisterClass *RC) const { function in class:RegisterClassInfo
168 // For efficiency, only compute the set order for the largest set.
175 compute(RC);
/external/chromium_org/third_party/skia/bench/
H A Dbench_util.py115 def compute(self): member in class:_ListAlgorithm
237 # per-tile config; compute representation for each tile
239 _ListAlgorithm(iters, representation).compute()
249 per_iter_time, representation).compute()
/external/eigen/Eigen/src/SVD/
H A DUpperBidiagonalization.h51 * perform decompositions via Bidiagonalization::compute(const MatrixType&).
60 compute(matrix);
63 UpperBidiagonalization& compute(const MatrixType& matrix);
89 UpperBidiagonalization<_MatrixType>& UpperBidiagonalization<_MatrixType>::compute(const _MatrixType& matrix) function in class:Eigen::internal::UpperBidiagonalization
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
H A DMatrixFunctionAtomic.h35 * \param[in] f matrix function to compute.
43 MatrixType compute(const MatrixType& A);
71 MatrixType MatrixFunctionAtomic<MatrixType>::compute(const MatrixType& A) function in class:Eigen::MatrixFunctionAtomic
/external/eigen/unsupported/Eigen/src/Polynomials/
H A DPolynomialSolver.h322 * Currently a QR algorithm is used to compute the eigenvalues of the companion matrix of
323 * the polynomial to compute its roots.
345 void compute( const OtherPolynomial& poly ) function in class:Eigen::PolynomialSolver
350 m_eigenSolver.compute( companion.denseMatrix() );
357 compute( poly ); }
377 void compute( const OtherPolynomial& poly ) function in class:Eigen::PolynomialSolver
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DMapMaker.java138 result = compute(key);
143 private V compute(K key) { method in class:MapMaker.ExpiringComputingMap
/external/javassist/src/main/javassist/bytecode/stackmap/
H A DLiveness.java29 * To correctly compute a stack map table, all the arguments must
34 public void compute(CodeIterator ci, TypedBlock[] blocks, int maxLocals, method in class:Liveness
/external/skia/bench/
H A Dbench_util.py115 def compute(self): member in class:_ListAlgorithm
237 # per-tile config; compute representation for each tile
239 _ListAlgorithm(iters, representation).compute()
249 per_iter_time, representation).compute()
/external/srtp/crypto/include/
H A Dauth.h81 (((a)->type)->compute((a)->state, (buf), (len), (a)->out_len, (res)))
125 auth_compute_func compute; member in struct:auth_type_t
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/
H A Dwebrunner.js135 var data = compute( times, numTests );
151 function compute(times, runs){
/external/chromium_org/third_party/libsrtp/srtp/crypto/include/
H A Dauth.h83 (((a)->type)->compute((a)->state, (buf), (len), (a)->out_len, (res)))
127 auth_compute_func compute; member in struct:auth_type_t
/external/eigen/Eigen/src/Eigen2Support/
H A DSVD.h58 compute(matrix);
68 void compute(const MatrixType& matrix);
94 void SVD<MatrixType>::compute(const MatrixType& matrix) function in class:Eigen::SVD

Completed in 2730 milliseconds

1234