HomeSort by: relevance | last modified time | path
    Searched refs:targets (Results 1 - 25 of 269) sorted by relevancy

1 2 3 4 5 6 7 8 91011

  /src/external/apache2/llvm/dist/clang/lib/Basic/Targets/
ARC.cpp 19 using namespace clang::targets;
Le64.cpp 14 #include "Targets.h"
20 using namespace clang::targets;
MSP430.cpp 17 using namespace clang::targets;
PNaCl.cpp 17 using namespace clang::targets;
SPIR.cpp 14 #include "Targets.h"
17 using namespace clang::targets;
TCE.cpp 14 #include "Targets.h"
18 using namespace clang::targets;
VE.cpp 19 using namespace clang::targets;
  /src/external/bsd/iscsi/dist/src/target/
Makefile.am 14 man5_MANS = targets.5
16 dist_man_MANS = iscsi-target.8 targets.5
  /src/usr.bin/make/unit-tests/
deptgt.mk 3 # Tests for special targets like .BEGIN or .SUFFIXES in dependency
8 # Just in case anyone tries to compile several special targets in a single
13 # The following lines demonstrate how 'targets' is set and reset during
17 # FinishDependencyGroup at "targets = NULL"
18 # Parse_File at "Lst_Free(targets)"
19 # Parse_File at "targets = Lst_New()"
20 # ParseLine_ShellCommand at "targets == NULL"
23 # parse.c:targets
25 target1 target2: sources # targets := [target1, target2] macro
26 : command1 # targets == [target1, target2 macro
27 : command2 # targets == [target1, target2] macro
    [all...]
varname-dot-alltargets.mk 14 # Since the tests are run with the -r option, no targets are
18 # Only first and second are "real" targets.
19 # The .ALLTARGETS variable is not about targets though, but
deptgt-delete_on_error.mk 7 # In compatibility mode, regular and phony targets are deleted, but precious
8 # targets are preserved.
10 # In parallel mode, regular targets are deleted, while phony and precious
11 # targets are preserved.
18 TARGETS= ${THIS}-regular ${THIS}-regular-delete
19 TARGETS+= ${THIS}-phony ${THIS}-phony-delete
20 TARGETS+= ${THIS}-precious ${THIS}-precious-delete
23 @rm -f ${TARGETS}
25 @-${.MAKE} -f ${MAKEFILE} -k ${TARGETS}
26 @rm -f ${TARGETS}
    [all...]
deptgt.exp 2 make: deptgt.mk:30: Unassociated shell command ": command3 # parse error, since targets == NULL"
5 Parsing deptgt.mk:37: : command for empty targets list
8 Parsing deptgt.mk:39: : command for empty targets list
23 make: deptgt.mk:64: warning: Special and mundane targets don't mix. Mundane ones ignored
dotwait.mk 18 # Within each test, the names of the sub-targets follow these
20 # * If it's expected that two or more targets may be made in parallel,
23 # * If it's expected that two or more targets should be made in sequence
26 # in which the targets should be made.
28 # Targets may echo ${PARALLEL_TARG} to print a modified version
30 # are converted to ".*". Two targets that are expected to
32 # output is independent of the order in which these targets are made.
  /src/external/bsd/unbound/dist/contrib/android/
15-android.conf 7 my %targets = (
  /src/external/bsd/unbound/dist/contrib/ios/
15-ios.conf 3 # It takes recent enough Xcode to use following two targets. It shouldn't
4 # be a problem by now, but if they don't work, original targets below
8 my %targets = (
  /src/external/gpl2/gmake/dist/
rule.h 24 char **targets; /* Targets of the rule. */ member in struct:rule
56 extern void create_pattern_rule PARAMS ((char **targets,
rule.c 93 while (rule->targets[ntargets] != 0)
301 for (i = 0; rule->targets[i] != 0; ++i)
303 for (j = 0; r->targets[j] != 0; ++j)
304 if (!streq (rule->targets[i], r->targets[j]))
306 if (r->targets[j] == 0)
307 /* All the targets matched. */
370 r->targets = (char **) xmalloc (2 * sizeof (char *));
374 r->targets[1] = 0;
381 r->targets[0] = savestring (p->target, r->lens[0])
    [all...]
  /src/etc/iscsi/
Makefile 13 CONFIGFILES+= auths targets
  /src/external/gpl3/binutils/dist/binutils/
bfdtest2.c 59 char** targets = NULL; local
61 if (bfd_check_format_matches (abfd, format, &targets))
64 if (targets)
66 bfd_find_target (targets[0], abfd);
  /src/external/gpl3/binutils.old/dist/binutils/
bfdtest2.c 59 char** targets = NULL; local
61 if (bfd_check_format_matches (abfd, format, &targets))
64 if (targets)
66 bfd_find_target (targets[0], abfd);
  /src/external/apache2/llvm/dist/llvm/lib/Support/
TargetRegistry.cpp 20 iterator_range<TargetRegistry::iterator> TargetRegistry::targets() { function in class:TargetRegistry
32 auto I = find_if(targets(),
35 if (I == targets().end()) {
64 // Provide special warning when no targets are initialized.
65 if (targets().begin() == targets().end()) {
66 Error = "Unable to find target for this triple (no targets are registered)";
71 auto I = find_if(targets(), ArchMatch);
73 if (I == targets().end()) {
74 Error = "No available targets are compatible with triple \"" + TT + "\""
    [all...]
  /src/external/bsd/iscsi/target/
Makefile 19 MAN=iscsi-target.8 targets.5
  /src/sys/dev/ic/
siop_common.c 128 sc->targets[i] = NULL;
260 siop_cmd->siop_tables->id = siop_htoc32(sc, sc->targets[target]->id);
267 (sc->targets[target]->flags & TARF_ISWIDE) == 0)
280 if ((sc->targets[target]->flags & TARF_TAG) == 0) {
296 if (sc->targets[target]->status == TARST_ASYNC) {
297 if ((sc->targets[target]->flags & TARF_DT) &&
299 sc->targets[target]->status = TARST_PPR_NEG;
302 } else if (sc->targets[target]->flags & TARF_WIDE) {
303 sc->targets[target]->status = TARST_WIDE_NEG;
306 } else if (sc->targets[target]->flags & TARF_SYNC)
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_bvgraph.h 110 // to any of the nodes in 'targets'.
111 bool isReachable(uptr from, const BV &targets) {
122 return targets.intersectsWith(visited);
128 uptr findPath(uptr from, const BV &targets, uptr *path, uptr path_size) {
132 if (targets.getBit(from))
138 if (uptr res = findPath(idx, targets, path + 1, path_size - 1))
145 uptr findShortestPath(uptr from, const BV &targets, uptr *path,
148 if (findPath(from, targets, path, p) == p)
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_bvgraph.h 109 // to any of the nodes in 'targets'.
110 bool isReachable(uptr from, const BV &targets) {
121 return targets.intersectsWith(visited);
127 uptr findPath(uptr from, const BV &targets, uptr *path, uptr path_size) {
131 if (targets.getBit(from))
137 if (uptr res = findPath(idx, targets, path + 1, path_size - 1))
144 uptr findShortestPath(uptr from, const BV &targets, uptr *path,
147 if (findPath(from, targets, path, p) == p)

Completed in 53 milliseconds

1 2 3 4 5 6 7 8 91011