HomeSort by relevance Sort by last modified time
    Searched defs:Dependencies (Results 1 - 22 of 22) sorted by null

  /external/ceres-solver/docs/
build.tex 7 \section{Dependencies}
27 \item{\texttt{CXSparse}~\footnote{\url{http://www.cise.ufl.edu/research/sparse/CXSparse/}}} is used for sparse matrix analysis, ordering and factorization. While it is similar to \texttt{SuiteSparse} in scope, its performance is a bit worse but is a much simpler library to build and does not have any other dependencies. This is an optional dependency.
81 This should automatically bring in the necessary \blas\ and \lapack\ dependencies. By co-incidence on Ubuntu, this also installs \texttt{CXSparse}.
193 also more involved since there is no automated way to install the dependencies.
197 \item Get dependencies; unpack them as subdirectories in \texttt{ceres/}
276 By default, Ceres will only link to \texttt{SuiteSparse}\ if all its dependencies are present.
282 to large scale problems due to the lack of a sparse Cholesky solver. This will reduce Ceres' dependencies down to
287 By default, Ceres will only link to \texttt{CXSparse} if all its dependencies are present.
293 This saves on binary size, but the resulting version of Ceres is not suited to large scale problems due to the lack of a sparse Cholesky solver. This will reduce Ceres' dependencies down to
  /external/compiler-rt/lib/
Makefile.mk 35 # FIXME: use automatic dependencies?
36 Dependencies := $(wildcard $(Dir)/*.h)
  /external/compiler-rt/lib/asan/
Makefile.mk 18 # FIXME: use automatic dependencies?
19 Dependencies := $(wildcard $(Dir)/*.h)
20 Dependencies += $(wildcard $(Dir)/../interception/*.h)
21 Dependencies += $(wildcard $(Dir)/../sanitizer_common/*.h)
  /external/compiler-rt/lib/interception/
Makefile.mk 18 # FIXME: use automatic dependencies?
19 Dependencies := $(wildcard $(Dir)/*.h)
20 Dependencies += $(wildcard $(Dir)/../sanitizer_common/*.h)
  /external/compiler-rt/lib/msan/
Makefile.mk 18 # FIXME: use automatic dependencies?
19 Dependencies := $(wildcard $(Dir)/*.h)
20 Dependencies += $(wildcard $(Dir)/../interception/*.h)
21 Dependencies += $(wildcard $(Dir)/../sanitizer_common/*.h)
  /external/compiler-rt/lib/profile/
Makefile.mk 17 # FIXME: use automatic dependencies?
18 Dependencies := $(wildcard $(Dir)/*.h)
  /external/compiler-rt/lib/sanitizer_common/
Makefile.mk 18 # FIXME: use automatic dependencies?
19 Dependencies := $(wildcard $(Dir)/*.h)
  /external/compiler-rt/lib/tsan/
Makefile.mk 14 Dependencies :=
  /external/compiler-rt/lib/tsan/rtl/
Makefile.mk 19 # FIXME: use automatic dependencies?
20 Dependencies := $(wildcard $(Dir)/*.h)
21 Dependencies += $(wildcard $(Dir)/../../interception/*.h)
22 Dependencies += $(wildcard $(Dir)/../../sanitizer_common/*.h)
  /external/compiler-rt/lib/ubsan/
Makefile.mk 18 # FIXME: use automatic dependencies?
19 Dependencies := $(wildcard $(Dir)/*.h)
20 Dependencies += $(wildcard $(Dir)/../sanitizer_common/*.h)
  /external/compiler-rt/lib/arm/
Makefile.mk 19 # FIXME: use automatic dependencies?
20 Dependencies := $(wildcard lib/*.h $(Dir)/*.h)
  /external/compiler-rt/lib/i386/
Makefile.mk 19 # FIXME: use automatic dependencies?
20 Dependencies := $(wildcard lib/*.h $(Dir)/*.h)
  /external/compiler-rt/lib/ppc/
Makefile.mk 19 # FIXME: use automatic dependencies?
20 Dependencies := $(wildcard lib/*.h $(Dir)/*.h)
  /external/compiler-rt/lib/x86_64/
Makefile.mk 19 # FIXME: use automatic dependencies?
20 Dependencies := $(wildcard lib/*.h $(Dir)/*.h)
  /external/llvm/lib/TableGen/
Main.cpp 67 const TGLexer::DependenciesMapTy &Dependencies = Parser.getDependencies();
68 for (TGLexer::DependenciesMapTy::const_iterator I = Dependencies.begin(),
69 E = Dependencies.end();
TGLexer.h 81 /// Dependencies - This is the list of all included files.
82 DependenciesMapTy Dependencies;
93 return Dependencies;
  /build/tools/
parsedeps.py 20 class Dependencies:
87 deps = Dependencies()
109 print "Read %d dependencies. %d targets." % (deps.count, len(deps.lines))
java-layers.py 23 sys.stderr.write(" of its dependencies.\n")
54 class Dependencies:
73 # transitive closure of dependencies
168 return Dependencies(deps)
  /external/clang/lib/Frontend/
DependencyGraph.cpp 37 DependencyMap Dependencies;
89 Dependencies[FromFile].push_back(File);
111 OS << "digraph \"dependencies\" {\n";
128 for (DependencyMap::iterator F = Dependencies.begin(),
129 FEnd = Dependencies.end();
  /external/clang/include/clang/Serialization/
GlobalModuleIndex.h 72 llvm::SmallVector<const FileEntry *, 4> Dependencies;
137 SmallVectorImpl<const FileEntry *> &Dependencies);
  /external/llvm/lib/Support/
DAGDeltaAlgorithm.cpp 28 // practice when there are unmodelled dependencies. I believe we can resolve
65 const std::vector<edge_ty> &Dependencies;
127 // Check dependencies invariant.
188 Dependencies(_Dependencies)
195 for (std::vector<edge_ty>::const_iterator it = Dependencies.begin(),
196 ie = Dependencies.end(); it != ie; ++it) {
358 const std::vector<edge_ty> &Dependencies) {
359 return DAGDeltaAlgorithmImpl(*this, Changes, Dependencies).Run();
  /external/clang/lib/Serialization/
GlobalModuleIndex.cpp 47 /// \brief Describes a module, including its file name and dependencies.
121 SmallVector<unsigned, 2> Dependencies;
200 // Dependencies
203 Dependencies(Record.begin() + Idx, Record.begin() + Idx + NumDeps);
219 // Record this module. The dependencies will be resolved later.
222 Info.Dependencies.swap(Dependencies);
252 for (unsigned I = 0, N = LM->second.Dependencies.size(); I != N; ++I) {
253 unsigned DepID = LM->second.Dependencies[I];
297 // Resolve dependencies. Drop any we can't resolve due to out-of-dat
    [all...]

Completed in 554 milliseconds