| /openbsd/src/sys/dev/ic/ |
| D | siop_common.c | 111 sc->targets[i] = NULL; in siop_common_attach() 235 int *targ_flags = &sc->targets[target]->flags; in siop_setuptables() 238 siop_cmd->siop_tables->id = siop_htoc32(sc, sc->targets[target]->id); in siop_setuptables() 245 (sc->targets[target]->flags & TARF_ISWIDE) == 0) in siop_setuptables() 258 if (sc->targets[target]->status == TARST_ASYNC) { in siop_setuptables() 283 sc->targets[target]->status = TARST_PPR_NEG; in siop_setuptables() 287 sc->targets[target]->status = TARST_WIDE_NEG; in siop_setuptables() 291 sc->targets[target]->status = TARST_SYNC_NEG; in siop_setuptables() 295 sc->targets[target]->status = TARST_OK; in siop_setuptables() 298 } else if (sc->targets[target]->status == TARST_OK && in siop_setuptables() [all …]
|
| /openbsd/src/gnu/llvm/llvm/lib/MC/ |
| D | TargetRegistry.cpp | 20 iterator_range<TargetRegistry::iterator> TargetRegistry::targets() { in targets() function in TargetRegistry 32 auto I = find_if(targets(), in lookupTarget() 35 if (I == targets().end()) { in lookupTarget() 65 if (targets().begin() == targets().end()) { in lookupTarget() 71 auto I = find_if(targets(), ArchMatch); in lookupTarget() 73 if (I == targets().end()) { in lookupTarget() 78 auto J = std::find_if(std::next(I), targets().end(), ArchMatch); in lookupTarget() 79 if (J != targets().end()) { in lookupTarget() 120 for (const auto &T : TargetRegistry::targets()) { in printRegisteredTargetsForVersion()
|
| /openbsd/src/usr.bin/make/ |
| D | targ.c | 114 static struct ohash targets; /* hash table of targets */ variable 131 ohash_init(&targets, 10, &gnode_info); in Targ_Init() 198 slot = ohash_lookup_interval(&targets, name, ename, hv); in Targ_FindNodei() 200 gn = ohash_find(&targets, slot); in Targ_FindNodei() 204 ohash_insert(&targets, slot, gn); in Targ_FindNodei() 218 slot = ohash_lookup_interval(&targets, name, ename, hv); in Targ_mk_special_node() 220 assert(ohash_find(&targets, slot) == NULL); in Targ_mk_special_node() 223 ohash_insert(&targets, slot, gn); in Targ_mk_special_node() 342 return &targets; in targets_hash()
|
| D | parse.c | 389 apply_op(struct growableArray *targets, unsigned int op, GNode *gn) in apply_op() argument 394 Array_ForEach(targets, ParseLinkSrc, gn); in apply_op() 413 struct growableArray *targets, in ParseDoSrc() argument 426 Array_ForEach(targets, ParseDoSpecial, gn->special_op); in ParseDoSrc() 470 apply_op(targets, tOp, gn); in ParseDoSrc() 476 apply_op(targets, tOp, Lst_Datum(ln)); in ParseDoSrc() 1434 build_target_group(struct growableArray *targets, struct ohash *t) in build_target_group() argument 1442 if (targets->n <= 1) in build_target_group() 1447 if (targets->a[0]->type & OP_TRANSFORM) in build_target_group() 1450 for (ln = Lst_First(&targets->a[0]->commands); ln != NULL; in build_target_group() [all …]
|
| D | make.c | 97 static struct ohash targets; /* stuff we must build */ variable 472 slot = ohash_qlookup(&targets, gn->name); in add_targets_to_make() 473 if (!ohash_find(&targets, slot)) in add_targets_to_make() 474 ohash_insert(&targets, slot, gn); in add_targets_to_make() 512 ohash_init(&targets, 10, &gnode_info); in Make_Init() 600 for (gn = ohash_first(&targets, &i); gn != NULL; in targets_contain_cycles() 601 gn = ohash_next(&targets, &i)) { in targets_contain_cycles()
|
| /openbsd/src/gnu/llvm/clang/cmake/modules/ |
| D | ClangConfig.cmake.in | 1 # This file allows users to call find_package(Clang) and pick up our targets. 14 # Provide all our library targets to users. 17 # By creating clang-tablegen-targets here, subprojects that depend on Clang's 20 if(NOT TARGET clang-tablegen-targets) 21 add_custom_target(clang-tablegen-targets)
|
| /openbsd/src/gnu/llvm/clang/cmake/caches/ |
| D | MultiDistributionExample.cmake | 8 # Build an optimized toolchain for an example set of targets. 31 # targets to install the distributions. 54 # Note that we need to include the CMake exports targets for the distribution 57 # clang-cmake-exports), in our list of targets. The distribution CMake exports 58 # targets just install the CMake exports file for the distribution's targets, 59 # whereas the project CMake exports targets install the rest of the project's 62 # file to get the exported targets).
|
| /openbsd/src/gnu/llvm/compiler-rt/lib/sanitizer_common/ |
| D | sanitizer_bvgraph.h | 110 bool isReachable(uptr from, const BV &targets) { in isReachable() argument 121 return targets.intersectsWith(visited); in isReachable() 127 uptr findPath(uptr from, const BV &targets, uptr *path, uptr path_size) { in findPath() argument 131 if (targets.getBit(from)) in findPath() 137 if (uptr res = findPath(idx, targets, path + 1, path_size - 1)) in findPath() 144 uptr findShortestPath(uptr from, const BV &targets, uptr *path, in findShortestPath() argument 147 if (findPath(from, targets, path, p) == p) in findShortestPath()
|
| /openbsd/src/gnu/llvm/llvm/utils/gn/secondary/llvm/lib/Target/ |
| D | targets.gni | 6 # or to the string "all" to get all known targets. 10 # FIXME: Port the remaining targets. 54 # Validate that llvm_targets_to_build is set to a list of valid targets, 55 # and remember which targets are built where needed (for conditionally-built 56 # unittest targets). 102 "Known targets:" + all_targets_string)
|
| D | BUILD.gn | 1 import("//llvm/lib/Target/targets.gni") 10 # 2. Forwarding targets that forward to the concrete targets (X86, ARM, ...). 12 # the names of the forwarding targets in CMake. They all (indirectly, 21 # targets in this file, so there's no cyclic dependency. 50 # 2. Forwarding targets.
|
| D | targets_with_disassemblers.gni | 1 import("//llvm/lib/Target/targets.gni") 5 # These targets don't have Disassemblers.
|
| D | targets_string.gni | 1 import("//llvm/lib/Target/targets.gni") 3 # A single string with all built targets, separated by spaces.
|
| D | targets_with_asm_parsers.gni | 1 import("//llvm/lib/Target/targets.gni") 5 # These targets don't have AsmParsers.
|
| /openbsd/src/gnu/usr.bin/binutils-2.17/bfd/ |
| D | README | 23 --enable-targets=TARGET,TARGET,TARGET... 24 Additional targets the library should support. To include 25 support for all known targets, use --enable-targets=all. 27 Include support for 64 bit targets. This is automatically 29 for --enable-targets=all. This requires a compiler with a 64
|
| /openbsd/src/gnu/usr.bin/binutils/bfd/ |
| D | README | 23 --enable-targets=TARGET,TARGET,TARGET... 24 Additional targets the library should support. To include 25 support for all known targets, use --enable-targets=all. 27 Include support for 64 bit targets. This is automatically 29 for --enable-targets=all. This requires a compiler with a 64
|
| D | mpw-make.sed | 69 /"{o}"targets.c.o \\Option-f "{s}"targets.c Makefile/,/^$/c\ 70 "{o}"targets.c.o \\Option-f "{s}"targets.c Makefile\ 71 {CC} @DASH_C_FLAG@ {ALL_CFLAGS} {TDEFAULTS} "{s}"targets.c -o "{o}"targets.c.o
|
| /openbsd/src/gnu/usr.bin/binutils/gdb/ |
| D | ax-general.c | 393 char *targets = (char *) alloca (ax->len * sizeof (targets[0])); in ax_reqs() local 408 memset (targets, 0, ax->len * sizeof (targets[0])); in ax_reqs() 442 if (targets[i] && (heights[i] != height)) in ax_reqs() 476 else if (targets[target]) in ax_reqs() 487 targets[target] = 1; in ax_reqs() 497 if (!targets[i + 3]) in ax_reqs() 532 if (targets[i] && !boundary[i]) in ax_reqs()
|
| /openbsd/src/gnu/llvm/llvm/cmake/modules/ |
| D | LLVM-Config.cmake | 20 # ALL_TARGETS - default looks at the full list of known targets 21 # INCLUDED_TARGETS - looks only at targets being configured 22 # OMITTED_TARGETS - looks only at targets that are not being configured 31 string(TOUPPER "${LLVM_TARGETS_TO_BUILD}" targets) 37 string(TOUPPER "${omitted_targets}" targets) 39 string(TOUPPER "${LLVM_ALL_TARGETS}" targets) 41 foreach(t ${targets}) 159 # Link all the codegens from all the targets 166 # Link all the asm parsers from all the targets 173 # Link all the descs from all the targets [all …]
|
| D | LLVMExternalProjectUtils.cmake | 4 # Utility function for constructing command lines for external project targets 42 # Don't generate install targets for this project 47 # TOOLCHAIN_TOOLS targets... 49 # DEPENDS targets... 51 # EXTRA_TARGETS targets... 52 # Extra targets in the subproject to generate targets for 107 # $<TARGET_FILE:tgt> only works on add_executable or add_library targets 363 # Add top-level targets
|
| /openbsd/src/gnu/llvm/llvm/utils/gn/secondary/llvm/lib/Target/WebAssembly/MCTargetDesc/ |
| D | BUILD.gn | 27 # This should contain tablegen targets generating .inc files included 28 # by other targets. .inc files only used by .cpp files in this directory 41 # This should contain tablegen targets generating .inc files included 42 # by other targets. .inc files only used by .cpp files in this directory
|
| /openbsd/src/gnu/usr.bin/binutils/bfd/doc/ |
| D | Makefile.am | 10 syms.texi targets.texi init.texi hash.texi linker.texi \ 17 section.p syms.p targets.p \ 33 $(srcdir)/../syms.c $(srcdir)/../targets.c \ 43 $(srcdir)/../targets.c $(srcdir)/../init.c 187 s-targets: $(MKDOC) $(srcdir)/../targets.c $(srcdir)/doc.str 188 ./$(MKDOC) -f $(srcdir)/doc.str <$(srcdir)/../targets.c >targets.tmp 189 $(SHELL) $(srcdir)/../../move-if-change targets.tmp targets.texi 190 touch s-targets 191 targets.texi: s-targets 270 $(srcdir)/../targets.c \
|
| /openbsd/src/gnu/usr.bin/binutils-2.17/bfd/doc/ |
| D | Makefile.am | 10 syms.texi targets.texi init.texi hash.texi linker.texi \ 17 section.p syms.p targets.p \ 33 $(srcdir)/../syms.c $(srcdir)/../targets.c \ 43 $(srcdir)/../targets.c $(srcdir)/../init.c 173 targets.texi: chew.c $(srcdir)/../targets.c $(srcdir)/doc.str 175 ./$(MKDOC) -f $(srcdir)/doc.str <$(srcdir)/../targets.c >targets.tmp 176 $(SHELL) $(srcdir)/../../move-if-change targets.tmp targets.texi 252 $(srcdir)/../targets.c \
|
| /openbsd/src/gnu/llvm/llvm/lib/Target/ |
| D | TargetMachineC.cpp | 45 if (TargetRegistry::targets().begin() == TargetRegistry::targets().end()) { in LLVMGetFirstTarget() 49 const Target *target = &*TargetRegistry::targets().begin(); in LLVMGetFirstTarget() 58 auto I = find_if(TargetRegistry::targets(), in LLVMGetTargetFromName() 60 return I != TargetRegistry::targets().end() ? wrap(&*I) : nullptr; in LLVMGetTargetFromName()
|
| /openbsd/src/gnu/llvm/lld/cmake/modules/ |
| D | LLDConfig.cmake.in | 1 # This file allows users to call find_package(LLD) and pick up our targets. 13 # Provide all our library targets to users.
|
| /openbsd/src/regress/usr.sbin/snmpd/ |
| D | snmpd_regress.c | 17 } targets[] = { variable 271 for (j = 0; targets[j].target != NULL; j++) { in main() 272 if (strcmp(argv[i], targets[j].target) == 0) { in main() 273 targets[j].function(); in main()
|