HomeSort by relevance Sort by last modified time
    Searched refs:compute (Results 76 - 100 of 279) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/mockito/cglib-and-asm/src/org/mockito/asm/
MethodWriter.java 100 * @see #compute
108 * @see #compute
115 * @see #compute
338 * Fields for the control flow graph analysis algorithm (used to compute the
354 private final int compute; field in class:MethodWriter
442 this.compute = computeFrames ? FRAMES : (computeMaxs ? MAXS : NOTHING);
547 if (!ClassReader.FRAMES || compute == FRAMES) {
640 if (compute == FRAMES) {
662 if (compute == FRAMES) {
685 if (compute == FRAMES) {
    [all...]
  /external/chromium_org/third_party/skia/bench/
bench_util.py 115 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/QR/
HouseholderQR.h 66 * perform decompositions via HouseholderQR::compute(const MatrixType&).
85 * the method compute(). It is a short cut for:
89 * qr.compute(matrix);
92 * \sa compute()
100 compute(matrix);
151 HouseholderQR& compute(const MatrixType& matrix);
344 HouseholderQR<MatrixType>& HouseholderQR<MatrixType>::compute(const MatrixType& matrix) function in class:Eigen::HouseholderQR
ColPivHouseholderQR_MKL.h 46 ColPivHouseholderQR<Matrix<EIGTYPE, Dynamic, Dynamic, EIGCOLROW, Dynamic, Dynamic> >::compute( \
ColPivHouseholderQR.h 70 * perform decompositions via ColPivHouseholderQR::compute(const MatrixType&).
101 * the method compute(). It is a short cut for:
105 * qr.compute(matrix);
108 * \sa compute()
120 compute(matrix);
177 ColPivHouseholderQR& compute(const MatrixType& matrix);
423 ColPivHouseholderQR<MatrixType>& ColPivHouseholderQR<MatrixType>::compute(const MatrixType& matrix) function in class:Eigen::ColPivHouseholderQR
FullPivHouseholderQR.h 76 * perform decompositions via FullPivHouseholderQR::compute(const MatrixType&).
107 * the method compute(). It is a short cut for:
111 * qr.compute(matrix);
114 * \sa compute()
126 compute(matrix);
167 FullPivHouseholderQR& compute(const MatrixType& matrix);
408 FullPivHouseholderQR<MatrixType>& FullPivHouseholderQR<MatrixType>::compute(const MatrixType& matrix) function in class:Eigen::FullPivHouseholderQR
567 // compute the product H'_0 H'_1 ... H'_n-1,
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineInplaceLU.h 34 /** Creates a LU object and compute the respective factorization of \a matrix using
39 m_lu.IsRowMajor ? computeRowMajor() : compute();
89 void compute();
120 void SkylineInplaceLU<MatrixType>::compute() { function in class:Eigen::SkylineInplaceLU
  /external/skia/bench/
bench_util.py 115 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/
JacobiSVD_MKL.h 45 JacobiSVD<Matrix<EIGTYPE, Dynamic, Dynamic, EIGCOLROW, Dynamic, Dynamic>, ColPivHouseholderQRPreconditioner>::compute(const Matrix<EIGTYPE, Dynamic, Dynamic, EIGCOLROW, Dynamic, Dynamic>& matrix, unsigned int computationOptions) \
  /external/eigen/bench/spbench/
sp_solver.cpp 89 /* Compute the factorization */
95 solver.compute(A);
104 cout <<" Compute Time " << time_comp<< endl;
  /external/eigen/test/eigen2/
eigen2_svd.cpp 85 s.compute(m);
  /external/eigen/test/
sparseqr.cpp 56 solver.compute(A);
83 // Compute explicitly the matrix Q
lu.cpp 66 lu.compute(m1);
110 lu.compute(m1);
sparse_solver.h 24 solver.compute(A);
81 solver.compute(A);
96 // Compute the norm of the relative error
101 // Compute the relative residual norm
117 solver.compute(A);
  /external/guava/guava/src/com/google/common/collect/
ComputingConcurrentHashMap.java 151 return compute(key, hash, e, computingValueReference);
171 V compute(K key, int hash, ReferenceEntry<K, V> e, method in class:ComputingConcurrentHashMap.ComputingSegment
182 value = computingValueReference.compute(key, hash);
350 V compute(K key, int hash) throws ExecutionException { method in class:ComputingConcurrentHashMap.ComputingValueReference
  /external/javassist/src/main/javassist/compiler/ast/
IntConst.java 44 public ASTree compute(int op, ASTree right) { method in class:IntConst
  /external/llvm/include/llvm/CodeGen/
ScheduleDFS.h 65 /// \brief Compute the values of each DAG node for various metrics during DFS.
125 /// resize() initializes DFSResult, while compute() populates it.
141 /// \brief Compute various metrics for the DAG with given roots.
142 void compute(ArrayRef<SUnit> SUnits);
  /hardware/qcom/display/msm8084/liboverlay/
overlayUtils.cpp 303 static inline int compute(const uint32_t& x, const uint32_t& y, function in namespace:overlay::utils
310 srcCrop.x = compute(whf.w, srcCrop.x, srcCrop.w);
313 srcCrop.y = compute(whf.h, srcCrop.y, srcCrop.h);
317 srcCrop.x = compute(whf.h,
  /hardware/qcom/display/msm8226/liboverlay/
overlayUtils.cpp 308 static inline int compute(const uint32_t& x, const uint32_t& y, function in namespace:overlay::utils
315 srcCrop.x = compute(whf.w, srcCrop.x, srcCrop.w);
318 srcCrop.y = compute(whf.h, srcCrop.y, srcCrop.h);
322 srcCrop.x = compute(whf.h,
  /external/eigen/bench/
benchEigenSolver.cpp 60 ei.compute(covMat);
74 ei.compute(covMat);
109 // the non-selfadjoint solver does not compute the eigen vectors
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
MapMaker.java 138 result = compute(key);
143 private V compute(K key) { method in class:MapMaker.ExpiringComputingMap
  /external/llvm/include/llvm/Analysis/
MemoryBuiltins.h 141 // Utility functions to compute size of objects.
144 /// \brief Compute the size of the object pointed by Ptr. Returns true and the
179 SizeOffsetType compute(Value *V);
194 // compute() should be used by external users.
216 /// May create code to compute the result at run-time.
243 SizeOffsetEvalType compute(Value *V);
  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 358 // Utility functions to compute size of objects.
362 /// \brief Compute the size of the object pointed by Ptr. Returns true and the
372 SizeOffsetType Data = Visitor.compute(const_cast<Value*>(Ptr));
407 SizeOffsetType ObjectSizeOffsetVisitor::compute(Value *V) { function in class:ObjectSizeOffsetVisitor
439 DEBUG(dbgs() << "ObjectSizeOffsetVisitor::compute() unhandled value: " << *V
538 SizeOffsetType PtrData = compute(GEP.getPointerOperand());
549 return compute(GA.getAliasee());
576 SizeOffsetType TrueSide = compute(I.getTrueValue());
577 SizeOffsetType FalseSide = compute(I.getFalseValue());
598 // IntTy and Zero must be set for each compute() since the address space ma
602 SizeOffsetEvalType ObjectSizeOffsetEvaluator::compute(Value *V) { function in class:ObjectSizeOffsetEvaluator
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/
builtin-diff.c 85 static int compute; variable
152 pr_debug("compute wdiff w1(%" PRId64 ") w2(%" PRId64 ")\n",
166 if (compute == COMPUTE_WEIGHTED_DIFF)
291 switch (compute) {
440 switch (compute) {
573 insert_hist_entry_by_compute(&hists->entries, he, compute);
705 OPT_CALLBACK('c', "compute", &compute,
731 OPT_UINTEGER('o', "order", &sort_compute, "Specify compute sorting."),
956 * Baseline or compute realted columns
    [all...]
  /external/eigen/Eigen/src/LU/
PartialPivLU.h 71 * perform decompositions via PartialPivLU::compute(const MatrixType&).
85 * \param matrix the matrix of which to compute the LU decomposition.
92 PartialPivLU& compute(const MatrixType& matrix);
209 compute(matrix);
387 PartialPivLU<MatrixType>& PartialPivLU<MatrixType>::compute(const MatrixType& matrix) function in class:Eigen::PartialPivLU
447 * Step 1: compute c = Pb.

Completed in 8511 milliseconds

1 2 34 5 6 7 8 91011>>