| /external/guava/guava/src/com/google/common/collect/ |
| ComputingConcurrentHashMap.java | 153 return compute(key, hash, e, computingValueReference); 173 V compute(K key, int hash, ReferenceEntry<K, V> e, method in class:ComputingConcurrentHashMap.ComputingSegment 184 value = computingValueReference.compute(key, hash); 352 V compute(K key, int hash) throws ExecutionException { method in class:ComputingConcurrentHashMap.ComputingValueReference 376 * Overrides get() to compute on demand. Also throws an exception when {@code null} is returned
|
| MapMaker.java | 654 * @param computingFunction the function used to compute new values 938 private V compute(K key) { method in class:MapMaker.NullComputingConcurrentMap [all...] |
| /external/libvorbis/doc/ |
| 01-introduction.tex | 301 \item compute dot product of floor and residue, producing audio spectrum vector 447 \paragraph{compute floor/residue dot product}
|
| /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/cache/ |
| FilteringPipeline.java | 100 mPreviewPipeline.compute(buffer, preset, COMPUTE_PRESET); 111 Log.v(LOGTAG, "Compute Request: " + getType(msg.what));
|
| CachingPipeline.java | 351 public synchronized void compute(TripleBufferBitmap buffer, ImagePreset preset, int type) { method in class:CachingPipeline 357 Log.v(LOGTAG, "compute preset " + preset);
|
| /external/eigen/Eigen/src/SVD/ |
| JacobiSVD.h | 90 m_qr.compute(matrix); 135 m_qr.compute(m_adjoint); 171 m_qr.compute(matrix); 224 m_qr.compute(m_adjoint); 267 m_qr.compute(matrix); 319 m_qr.compute(m_adjoint); 512 * perform decompositions via JacobiSVD::compute(const MatrixType&). 553 compute(matrix, computationOptions); 566 JacobiSVD& compute(const MatrixType& matrix, unsigned int computationOptions); 572 * This method uses the current \a computationOptions, as already passed to the constructor or to compute(const MatrixType&, unsigned int) 574 JacobiSVD& compute(const MatrixType& matrix) function in class:Eigen::JacobiSVD 726 JacobiSVD<MatrixType, QRPreconditioner>::compute(const MatrixType& matrix, unsigned int computationOptions) function in class:Eigen::JacobiSVD [all...] |
| /external/eigen/Eigen/src/SparseCholesky/ |
| SimplicialCholesky.h | 97 derived().compute(matrix); 123 * \sa compute() 137 * \sa compute() 194 eigen_assert(m_factorizationIsOk && "The decomposition is not in a valid state for solving, you must first call either compute() or symbolic()/numeric()"); 222 eigen_assert(m_factorizationIsOk && "The decomposition is not in a valid state for solving, you must first call either compute() or symbolic()/numeric()"); 245 void compute(const MatrixType& matrix) function in class:Eigen::SimplicialCholeskyBase 396 SimplicialLLT& compute(const MatrixType& matrix) function in class:Eigen::SimplicialLLT 398 Base::template compute<false>(matrix); 490 SimplicialLDLT& compute(const MatrixType& matrix) function in class:Eigen::SimplicialLDLT 492 Base::template compute<true>(matrix) 582 SimplicialCholesky& compute(const MatrixType& matrix) function in class:Eigen::SimplicialCholesky [all...] |
| /external/eigen/unsupported/Eigen/src/MatrixFunctions/ |
| MatrixFunction.h | 29 * \p AtomicType and uses these results to compute the matrix function of the whole matrix. The class 30 * \p AtomicType should have a \p compute() member function for computing the matrix function of a block. 47 * changed (or destroyed) before compute() is called. 51 /** \brief Compute the matrix function. 60 void compute(ResultType &result); 92 /** \brief Compute the matrix function. 102 void compute(ResultType& result) function in class:Eigen::MatrixFunction 107 mf.compute(Cresult); 144 template <typename ResultType> void compute(ResultType& result); 195 /** \brief Compute the matrix function 202 void MatrixFunction<MatrixType,AtomicType,1>::compute(ResultType& result) function in class:Eigen::MatrixFunction [all...] |
| /external/llvm/lib/Analysis/ |
| MemoryBuiltins.cpp | 340 // Utility functions to compute size of objects. 344 /// \brief Compute the size of the object pointed by Ptr. Returns true and the 354 SizeOffsetType Data = Visitor.compute(const_cast<Value*>(Ptr)); 367 /// \brief Compute the size of the underlying object pointed by Ptr. Returns 379 SizeOffsetType Data = Visitor.compute(const_cast<Value*>(Ptr)); 410 SizeOffsetType ObjectSizeOffsetVisitor::compute(Value *V) { function in class:ObjectSizeOffsetVisitor 444 DEBUG(dbgs() << "ObjectSizeOffsetVisitor::compute() unhandled value: " << *V 543 SizeOffsetType PtrData = compute(GEP.getPointerOperand()); 554 return compute(GA.getAliasee()); 579 SizeOffsetType Ret = compute(PHI.getIncomingValue(0)) 618 SizeOffsetEvalType ObjectSizeOffsetEvaluator::compute(Value *V) { function in class:ObjectSizeOffsetEvaluator [all...] |
| /packages/apps/Gallery2/src/com/android/gallery3d/data/ |
| TimeClustering.java | 145 compute(items.get(i)); 148 compute(null); 192 private void compute(SmallItem currentItem) { method in class:TimeClustering
|
| /external/clang/test/CodeGenCXX/ |
| visibility.cpp | 1271 class compute { class in namespace:test67
|
| /external/eigen/Eigen/src/SuperLUSupport/ |
| SuperLUSupport.h | 333 void compute(const MatrixType& matrix) function in class:Eigen::SuperLUBase 341 * \sa compute() 354 * \sa compute() 500 compute(matrix); 641 eigen_assert(m_factorizationIsOk && "The decomposition is not in a valid state for solving, you must first call either compute() or analyzePattern()/factorize()"); 691 eigen_assert(m_factorizationIsOk && "The decomposition is not in a valid state for extracting factors, you must first call either compute() or analyzePattern()/factorize()"); 777 eigen_assert(m_factorizationIsOk && "The decomposition is not in a valid state for computing the determinant, you must first call either compute() or analyzePattern()/factorize()"); 836 compute(matrix); 952 eigen_assert(m_factorizationIsOk && "The decomposition is not in a valid state for solving, you must first call either compute() or analyzePattern()/factorize()");
|
| /external/llvm/lib/CodeGen/ |
| ScheduleDAGInstrs.cpp | 688 /// If RegPressure is non null, compute register pressure as a side effect. The 1242 void SchedDFSResult::compute(ArrayRef<SUnit> SUnits) { function in class:SchedDFSResult [all...] |
| /ndk/build/core/ |
| definitions.mk | 704 # Compute the list of all static and shared libraries required to link a 746 modules-compute-dependencies = \ 748 $(call module-compute-depends,$(__module))\ 751 module-compute-depends = \ [all...] |
| /libcore/luni/src/main/java/java/util/concurrent/ |
| ForkJoinPool.java | 1611 public void compute() { method in class:ForkJoinPool.InvokeAll [all...] |
| /prebuilts/tools/common/netbeans-visual/ |
| org-netbeans-api-visual.jar | |
| /external/robolectric/lib/main/ |
| javassist-3.14.0-GA.jar | |
| /prebuilts/sdk/tools/lib/ |
| guava-10.0.1.jar | |
| lint.jar | |
| lint_api.jar | |
| lint_checks.jar | |
| /prebuilts/tools/common/asm-tools/ |
| asm-debug-all-4.0.jar | |
| /prebuilts/tools/common/m2/internal/com/google/code/findbugs/findbugs/2.0.1/ |
| findbugs-2.0.1.jar | |
| /external/dexmaker/lib/ |
| mockito-core-1.9.1-SNAPSHOT.jar | |
| /external/robolectric/lib/test/ |
| mockito-core-1.8.5.jar | |