Home
last modified time | relevance | path

Searched full:dependencies (Results 1 – 25 of 2396) sorted by relevance

12345678910>>...96

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DDAGDeltaAlgorithm.h24 /// removing any single element not required by the dependencies on the other
27 /// The DAG should be used to represent dependencies in the changes which are
36 /// substantially fewer tests with appropriate dependencies. \see DeltaAlgorithm
54 /// \p Dependencies edges by executing \see ExecuteOneTest() on subsets of
56 /// predicate and the input \p Dependencies.
60 /// \param Dependencies The list of dependencies amongst changes. For each
61 /// (x,y) in \p Dependencies, both x and y must be in \p Changes. The
64 /// dependencies.
66 const std::vector<edge_ty> &Dependencies);
/freebsd/share/man/man7/
H A Dports.757 It also recursively handles dependencies \(em other pieces of software
190 any dependencies of the current port.
221 Install missing dependencies from packages instead of building them.
233 config for this port and all its dependencies.
241 config for this port and all its dependencies.
249 for this port and all its dependencies using
253 dependencies).
255 Fetch the distfiles of the port and all its dependencies.
260 Print a list of all the direct compile or run dependencies for this port.
262 Print a list of all recursive dependencies for this port.
[all …]
/freebsd/contrib/pkgconf/man/
H A Dpc.562 The property will be set to a list of dependencies parsed from the
134 described as dependencies should be specified here.
140 not described as dependencies should be specified here.
146 not described as dependencies should be specified here.
156 when a package, or one of its dependencies, is implemented in a language whose
164 tags apply only when private dependencies are linked.
208 Required dependencies that must be met for the package to be usable.
209 All dependencies must be satisfied or the pkg-config implementation must not use
213 Required dependencies that must be met for the package to be usable for
220 Required dependencies that must be met for the package to be usable for header
[all …]
/freebsd/contrib/libucl/tests/schema/
H A Ddependencies.json3 "description": "dependencies",
5 "dependencies": {"bar": ["foo"]} object
36 "description": "multiple dependencies",
38 "dependencies": {"quux": ["foo", "bar"]} object
52 "description": "with dependencies",
67 "description": "missing both dependencies",
74 "description": "multiple dependencies subschema",
76 "dependencies": { object
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/
H A DModuleDepCollector.h32 namespace dependencies {
60 /// Read-only access to whether the module is made up of dependencies in
177 /// A collection of prebuilt modular dependencies this module directly depends
178 /// on, not including transitive dependencies.
182 /// including transitive dependencies.
192 /// Invokes \c Cb for all file dependencies of this module. Each provided
208 /// including transitive dependencies.
220 /// transitive modular dependencies and passes everything to the
247 /// Adds direct modular dependencies that have already been built to the
255 /// Traverses the previously collected direct modular dependencies to discover
[all …]
H A DDependencyScanningTool.h26 namespace dependencies {
32 /// Graph of modular dependencies.
35 /// The full dependencies and module graph for a specific input.
37 /// The graph of direct and transitive modular dependencies.
46 /// directly depends on, not including transitive dependencies.
50 /// on, not including transitive dependencies.
54 /// transitive dependencies.
61 /// includes both direct and transitive module dependencies.
71 /// should make the dependencies between commands explicit to enable parallel
132 /// modular dependencies and return the information needed for explicit build.
[all …]
H A DDependencyScanningService.h19 namespace dependencies {
22 /// dependencies.
24 /// This mode is used to compute the dependencies by running the preprocessor
28 /// This mode is used to compute the dependencies by running the preprocessor
127 } // end namespace dependencies
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Checkers/
H A DCheckers.td207 Dependencies<[CallAndMessageModeling]>;
218 Dependencies<[DereferenceModeling]>;
223 Dependencies<[DereferenceModeling]>;
249 Dependencies<[StackAddrEscapeBase]>,
301 Dependencies<[DynamicTypePropagation]>,
306 Dependencies<[StackAddrEscapeBase]>,
316 Dependencies<[PthreadLockBase]>,
465 Dependencies<[CStringModeling]>,
471 Dependencies<[CStringModeling]>,
477 Dependencies<[CStringModeling]>,
[all …]
H A DCheckerBase.td113 list<Checker> Dependencies;
126 /// Describes (strong) dependencies in between checkers. This is important for
129 /// enabled if none of its dependencies (transitively) is disabled. Dependencies
137 /// Dependencies<[MallocBase]>;
138 class Dependencies<list<Checker> Deps = []> {
139 list<Checker> Dependencies = Deps;
143 /// Unlike strong dependencies, this expresses dependencies in between
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/
H A DCheckerRegistry.cpp151 for (auto &DepPair : Data.Dependencies) { in CheckerRegistry()
153 // Some assertions to enforce that strong dependencies are relations in in CheckerRegistry()
154 // between purely modeling checkers, and weak dependencies are about in CheckerRegistry()
159 "A strong dependency mustn't have weak dependencies!"); in CheckerRegistry()
197 /// Collects weak dependencies in \p enabledData.Checkers.
205 // invocation. Weak dependencies will not enable their unspecified strong in initializeRegistry()
206 // depenencies, but its only after resolving strong dependencies for all in initializeRegistry()
217 if (!collectStrongDependencies(Checker.Dependencies, Mgr, Deps, in initializeRegistry()
219 // If we failed to enable any of the dependencies, don't enable this in initializeRegistry()
244 if (!collectStrongDependencies(Checker.Dependencies, Mgr, Deps, in initializeRegistry()
[all …]
/freebsd/contrib/bsnmp/lib/
H A Dbsnmpagent.3324 The callback may create dependencies or finalizers (see below).
327 interdependent table columns dependencies may be necessary.
333 After this all the dependencies are freed
339 are executed in the order in which the dependencies were created with an
341 If any of the dependencies fails, all the
342 committed dependencies are called again in the opposite order
347 At the end the dependencies are freed and the finalizers are called with
357 Now the dependencies are freed and the finalizers are called
366 There are to mechanisms to help in complex SET operations: dependencies and
389 created dependencies), the size of the structure to allocate and
[all …]
/freebsd/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DDependencyScanningTool.cpp15 using namespace dependencies;
23 /// Prints out all of the gathered dependencies into a string.
34 Dependencies.push_back(std::string(File)); in handleFileDependency()
52 ArrayRef<std::string> Dependencies) in printDependencies() argument
54 for (const auto &Dep : Dependencies) in printDependencies()
64 DependencyPrinter Generator(*Opts, Dependencies); in printDependencies()
70 std::vector<std::string> Dependencies; member in __anon8350f3120111::MakeDependencyPrinterConsumer
178 TU.FileDeps = std::move(Dependencies); in takeTranslationUnitDeps()
/freebsd/contrib/llvm-project/llvm/tools/llvm-mca/Views/
H A DBottleneckAnalysis.h13 /// identify problematic data dependencies and processor resource interferences.
22 /// Data Dependencies: [ 1.42% ]
23 /// - Register Dependencies [ 1.42% ]
24 /// - Memory Dependencies [ 0.00% ]
60 /// A dependency graph is used internally to track dependencies between nodes.
62 /// and edges of the graph represent data dependencies or processor resource
203 // dependencies and processor resource interferences between instructions.
206 // input assembly sequence. Edges of the graph represent dependencies between
218 // Loop carried dependencies are carefully expanded by the bottleneck analysis
309 // Cycles where backpressure increased because of data dependencies.
[all …]
/freebsd/crypto/krb5/src/config/
H A Dpost.in41 echo 1>&2 error: cannot build dependencies with srcdir=. ; \
58 @echo 1>&2 error: cannot build dependencies using system et package
65 @echo 1>&2 error: cannot build dependencies using system ss package
72 @echo 1>&2 error: cannot build dependencies using system verto package
89 .d: $(ALL_DEP_SRCS) $(DEP_CFG_VERIFY) depend-dependencies
96 # These are dependencies of the depend target that do not get fed to
98 depend-dependencies:
122 echo "# No dependencies here." > $(srcdir)/deps.new ; \
134 # Clear out dependencies. Should only be used temporarily, e.g., while
135 # moving or renaming headers and then rebuilding dependencies.
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSDNodeDbgValue.h143 // SDNode dependencies will be calculated as SDNodes that appear in
158 ArrayRef<SDDbgOperand> L, ArrayRef<SDNode *> Dependencies, in SDDbgValue() argument
162 NumAdditionalDependencies(Dependencies.size()), in SDDbgValue()
163 AdditionalDependencies(Alloc.Allocate<SDNode *>(Dependencies.size())), in SDDbgValue()
169 llvm::copy(Dependencies, AdditionalDependencies); in SDDbgValue()
196 SmallVector<SDNode *> Dependencies; in getSDNodes() local
199 Dependencies.push_back(DbgOp.getSDNode()); in getSDNodes()
200 llvm::append_range(Dependencies, getAdditionalDependencies()); in getSDNodes()
201 return Dependencies; in getSDNodes()
/freebsd/tools/kerneldoc/subsys/
H A DREADME11 The file 'Dependencies' contains dependencies for the .tag files.
14 the necessary dependencies to the file 'Dependencies'.
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DDependencyGraph.cpp36 DependencyMap Dependencies; member in __anoncc7c34da0111::DependencyGraphCallback
87 Dependencies[*FromFile].push_back(*File); in InclusionDirective()
105 Dependencies[*FromFile].push_back(*File); in EmbedDirective()
127 OS << "digraph \"dependencies\" {\n"; in OutputGraphFile()
142 for (DependencyMap::iterator F = Dependencies.begin(), in OutputGraphFile()
143 FEnd = Dependencies.end(); in OutputGraphFile()
/freebsd/sbin/rcorder/
H A Drcorder.856 shell) which indicate the dependencies the files have upon certain
141 lines, in which case it has no dependencies.
142 There must be at least one file with no dependencies in the set of
201 .It "%s was seen in circular dependencies for %d times."
204 Start with files having biggest counter when fighting with broken dependencies.
221 Edges and nodes where circular dependencies were detected are drawn bold red.
/freebsd/contrib/llvm-project/llvm/include/llvm/TargetParser/
H A DAArch64TargetParser.h178 // dependencies change depending on this.
184 // depends on. Does not change the base architecture, or follow dependencies
190 // dependencies between features which are only related by required
195 // to later resolve dependencies which depend on it.
199 // base architecture, to later resolve dependencies which depend on it.
204 // will also enable or disable any features as required by the dependencies
210 // feature in the \p Features list without expanding their dependencies. Used
277 // fmv-features metadata, expand their dependencies and then return a bitmask
281 // For a given set of FMV feature names, expand their dependencies and then
/freebsd/usr.bin/clang/llvm-mca/
H A Dllvm-mca.1642 of loop carried dependencies. Block throughput is superiorly limited by the
645 In the absence of loop\-carried data dependencies, the observed IPC tends to a
652 data dependencies, the observed \(aquOps Per Cycle\(aq should tend to a theoretical
668 are no loop\-carried dependencies, the observed \fIuOps Per Cycle\fP is expected to
682 executed per clock cycle in the absence of operand dependencies. In this
812 help diagnose performance bottlenecks caused by long data dependencies and
850 vhaddps. Long data dependencies negatively impact the ILP (Instruction Level
853 In the dot\-product example, there are anti\-dependencies introduced by
854 instructions from different iterations. However, those dependencies can be
859 the presence of long latency instructions and potentially long data dependencies
[all …]
/freebsd/usr.bin/mkdep/
H A Dmkdep.145 file dependencies which are written into the file ``.depend''.
78 Write the include file dependencies to
84 to produce dependencies of the form:
116 File containing list of dependencies.
/freebsd/libexec/rtld-elf/rtld-libc/
H A DMakefile.inc1 # This makefiles adds the necessary libc dependencies for RTLD without pulling
22 # Avoid further dependencies by providing simple implementations of libc
65 # Finally add additional architecture-dependent libc and libsys dependencies
100 # XXX: we add dependencies on the source libraries in ../Makefile after
101 # bsd.prog.mk includes bsd.libnames.mk since variables in dependencies are
/freebsd/tools/build/options/
H A DWITH_DIRDEPS_BUILD18 computing a graph of tree dependencies from the current origin.
21 skips checking dirdep dependencies and will only build in the current
42 and package so that their dependencies can be tracked.
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCTOCRegDeps.cpp1 //===-- PPCTOCRegDeps.cpp - Add Extra TOC Register Dependencies -----------===//
47 // updated to add extra dependencies on r2 to instructions using the @toc@l
51 // 1. These extra r2 dependencies are not really properties of the
57 // relocations to some user instructions, and so the exta dependencies do
137 "PowerPC TOC Register Dependencies", false, false)
/freebsd/usr.bin/ldd/
H A Dldd.17 .Nd list dynamic object dependencies
22 dependencies that are the result of needed shared objects which themselves
50 lists the dependencies of an executable by setting

12345678910>>...96