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

12345

/external/deqp/external/vulkancts/modules/vulkan/compute/
H A DvktComputeBasicComputeShaderTests.hpp31 namespace compute namespace in namespace:vkt
36 } // compute
H A DvktComputeIndirectComputeDispatchTests.hpp31 namespace compute namespace in namespace:vkt
36 } // compute
H A DvktComputeShaderBuiltinVarTests.hpp31 namespace compute namespace in namespace:vkt
34 } // compute
H A DvktComputeTests.hpp31 namespace compute namespace in namespace:vkt
36 } // compute
H A DvktComputeTests.cpp32 namespace compute namespace in namespace:vkt
51 return createTestGroup(testCtx, "compute", "Compute shader tests", createChildren);
54 } // compute
H A DvktComputeTestsUtil.hpp36 namespace compute namespace in namespace:vkt
160 } // compute
/external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
H A DTweenEquation.java18 public abstract float compute(float t); method in class:TweenEquation
H A DTweenPath.java21 public float compute(float t, float[] points, int pointsCnt); method in interface:TweenPath
/external/clang/test/Analysis/inlining/
H A Deager-reclamation-path-notes.c10 int compute() { function
21 use(p, compute());
33 use2(p, compute());
/external/dagger2/producers/src/main/java/dagger/producers/internal/
H A DAbstractProducer.java31 * An abstract {@link Producer} implementation that memoizes the result of its compute method.
52 protected abstract ListenableFuture<T> compute(ProducerMonitor monitor); method in class:AbstractProducer
63 instance = result = compute(monitor);
65 throw new NullPointerException("compute returned null");
H A DSetOfProducedProducer.java68 public ListenableFuture<Set<Produced<T>>> compute(ProducerMonitor unusedMonitor) { method in class:SetOfProducedProducer
H A DSetProducer.java66 public ListenableFuture<Set<T>> compute(ProducerMonitor unusedMonitor) { method in class:SetProducer
/external/deqp/framework/delibs/decpp/
H A DdeSha1.cpp39 Sha1 Sha1::compute (size_t size, const void* data) function in class:de::Sha1
/external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/paths/
H A DLinear.java10 public float compute(float t, float[] points, int pointsCnt) { method in class:Linear
H A DCatmullRom.java10 public float compute(float t, float[] points, int pointsCnt) { method in class:CatmullRom
/external/eigen/Eigen/src/Eigenvalues/
H A DGeneralizedSelfAdjointEigenSolver.h35 * Call the function compute() to compute the eigenvalues and eigenvectors of
58 * perform decompositions via compute(). This constructor
70 * intends to perform decompositions via compute(). The \p size
74 * \sa compute() for an example
89 * This constructor calls compute(const MatrixType&, const MatrixType&, int)
90 * to compute the eigenvalues and (if requested) the eigenvectors of the
104 * \sa compute(const MatrixType&, const MatrixType&, int)
110 compute(matA, matB, options);
138 * The implementation uses LLT to compute th
163 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.
134 compute(matrix.derived(), computeEigenvectors);
143 * function compute(const MatrixType& matrix, bool) has been called before
144 * to compute the eigendecomposition of a matrix, and
170 * function compute(const MatrixType& matrix, bool) has been called before
171 * to compute the eigendecomposition of a matrix.
203 * compute th
261 ComplexEigenSolver<MatrixType>::compute(const EigenBase<InputType>& matrix, bool computeEigenvectors) function in class:Eigen::ComplexEigenSolver
[all...]
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DRegisterClassInfo.cpp67 /// compute - Compute the preferred allocation order for RC with reserved
70 void RegisterClassInfo::compute(const TargetRegisterClass *RC) const { function in class:RegisterClassInfo
/external/dagger2/producers/src/test/java/dagger/producers/internal/
H A DAbstractProducerTest.java81 public ListenableFuture<Integer> compute(ProducerMonitor unusedMonitor) {
140 public ListenableFuture<T> compute(ProducerMonitor unusedMonitor) { method in class:AbstractProducerTest.DelegateProducer
/external/eigen/unsupported/Eigen/src/IterativeSolvers/
H A DIncompleteLU.h35 compute(mat);
42 IncompleteLU& compute(const MatrixType& mat) function in class:Eigen::IncompleteLU
/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.h52 compute(mat);
82 DiagonalPreconditioner& compute(const MatType& mat) function in class:Eigen::DiagonalPreconditioner
141 compute(mat);
168 LeastSquareDiagonalPreconditioner& compute(const MatType& mat) function in class:Eigen::LeastSquareDiagonalPreconditioner
201 IdentityPreconditioner& compute(const MatrixType& ) { return *this; } function in class:Eigen::IdentityPreconditioner
/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
170 // For efficiency, only compute the set order for the largest set.
177 compute(RC);
/external/eigen/bench/
H A Ddense_solvers.cpp18 solver.compute(A.transpose()*A);
20 solver.compute(A);
25 void compute(Solver &solver, const MatrixType &A) { function
26 solver.compute(A);
64 BENCH(t_qr, tries, rep, compute(qr,A));
65 BENCH(t_cpqr, tries, rep, compute(cpqr,A));
66 BENCH(t_cod, tries, rep, compute(cod,A));
68 BENCH(t_fpqr, tries, rep, compute(fpqr,A));
70 BENCH(t_jsvd, tries, rep, jsvd.compute(A,svd_opt));
72 BENCH(t_bdcsvd, tries, rep, bdcsvd.compute(
[all...]

Completed in 1003 milliseconds

12345