HomeSort by: relevance | last modified time | path
    Searched defs:targets (Results 1 - 13 of 13) sorted by relevancy

  /src/usr.bin/make/unit-tests/
varname-dot-make-mode.mk 11 all: .PHONY make-mode-randomize-targets
14 # By adding the word "randomize-targets" to the variable .MAKE.MODE, the
15 # targets are not made in declaration order, but rather in random order. This
23 make-mode-randomize-targets: .PHONY
25 @${MAKE} -r -f ${MAKEFILE} randomize-targets
28 @${MAKE} -r -f ${MAKEFILE} -j1 randomize-targets
31 @${MAKE} -r -f ${MAKEFILE} -j5 randomize-targets | grep '^:'
33 .if make(randomize-targets)
34 randomize-targets: .WAIT a1 a2 a3 .WAIT b1 b2 b3 .WAIT c1 c2 c3 .WAIT
39 # the mode after defining the targets
    [all...]
  /src/sys/kern/
sys_lwp.c 620 syscallarg(const lwpid_t *) targets;
624 lwpid_t targets[32], *tp; local in function:sys__lwp_unpark_all
630 if (SCARG(uap, targets) == NULL) {
646 if (sz <= sizeof(targets))
647 tp = targets;
650 error = copyin(SCARG(uap, targets), tp, sz);
652 if (tp != targets) {
658 if (tp != targets)
  /src/sys/arch/hpcmips/stand/pbsdboot/
disptest.c 45 } targets[] = { variable in typeref:struct:area[]
49 int ntargets = ARRAYSIZEOF(targets);
411 for (addr = targets[i].start;
412 addr < targets[i].end;
  /src/sys/arch/arm/cortex/
gic.c 157 uint32_t targets = 0; local in function:gicd_find_targets
166 targets = gicd_read(sc, GICD_ITARGETSRn(i));
167 if (targets != 0)
170 targets |= (targets >> 16);
171 targets |= (targets >> 8);
172 targets &= 0xff;
174 return targets ? targets : 1
256 const uint32_t targets = gicd_read(sc, targets_reg); local in function:armgic_get_affinity
285 uint32_t targets = gicd_read(sc, targets_reg); local in function:armgic_set_affinity
432 uint32_t targets = gicd_read(sc, targets_reg); local in function:armgic_establish_irq
529 uint32_t targets = gicd_read(sc, targets_reg); local in function:armgic_cpu_init_targets
    [all...]
  /src/sys/dev/ic/
siopvar_common.h 151 struct siop_common_target *targets[16]; /* per-target states */ member in struct:siop_common_softc
aic79xx.c 2907 * Update the bitmask of targets for which the controller should
7120 int targets; local in function:ahd_search_qinfifo
7233 targets = 0;
7241 targets++;
7242 if (targets > AHD_SCB_MAX) {
9189 * requests to unattached luns on enabled targets.
9248 * Only allow additional targets if
  /src/sys/miscfs/procfs/
procfs_vnops.c 1266 const struct proc_target *targets; local in function:procfs_lookup
1272 targets = proc_sys_targets;
1277 targets = proc_sysfs_targets;
1282 targets = proc_mqueue_targets;
1287 targets = proc_sysvipc_targets;
1302 pt = &targets[i];
1615 const struct proc_target *targets; local in function:procfs_readdir
1620 targets = proc_sys_targets;
1624 targets = proc_sysfs_targets;
1628 targets = proc_mqueue_targets
    [all...]
  /src/usr.bin/make/
suff.c 705 * During Suff_AddSuffix, search through the list of existing targets and find
706 * if any of the existing targets can be turned into a transformation rule.
784 * Look at all existing targets to see if adding this suffix will make one
785 * of the current targets mutate into a suffix rule.
787 * This is ugly, but other makes treat all targets that start with a '.' as
1311 * expressions or file wildcards into actual targets.
1653 CandidateList *sources, CandidateList *targets)
1671 Lst_Append(targets, targ);
1677 CandidateList *sources, CandidateList *targets)
1681 if (!Lst_IsEmpty(targets) || nullSuff == NULL
1770 CandidateList targets = LST_INIT; local in function:FindDepsRegular
    [all...]
main.c 78 * single string. Used to implement the special targets
661 * perform them if so. Else take them to be targets and stuff them
828 if (strstr(mode, "randomize-targets") != NULL)
900 GNodeList targets = LST_INIT; local in function:MakeTargets
901 bool outOfDate; /* false if all targets up to date */
904 Parse_MainName(&targets);
906 Targ_FindList(&targets, &opts.create);
914 outOfDate = Make_MakeParallel(&targets);
916 Compat_MakeAll(&targets);
919 Lst_Done(&targets); /* Don't free the targets themselves. *
    [all...]
parse.c 94 * Parse_MainName Populate the list of targets to create.
155 SP_MAIN, /* .MAIN and no user-specified targets to make */
204 * The target to be made if no targets are specified in the command line.
210 * During parsing, the targets from the left-hand side of the currently
214 * See unit-tests/deptgt.mk, keyword "parse.c:targets".
216 static GNodeList *targets; variable in typeref:typename:GNodeList *
220 * All shell commands for all targets, in no particular order and possibly
677 * Add the child to the parent's children, and for non-special targets, vice
690 * Special targets like .END do not need to be informed once the child
710 for (ln = targets->first; ln != NULL; ln = ln->next
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/vmwgfx/
vmwgfx_execbuf.c 2484 SVGA3dSoTarget targets[]; member in struct:vmw_cmd_dx_set_so_targets::__anon0a1ebe2d0508
2503 &cmd->targets[i].sid, &res);
2510 binding.offset = cmd->targets[i].offset;
2511 binding.size = cmd->targets[i].sizeInBytes;
  /src/sys/external/bsd/drm2/dist/drm/i915/display/
intel_sdvo.c 659 struct intel_sdvo_set_target_input_args targets = {0}; local in function:intel_sdvo_set_target_input
662 &targets, sizeof(targets));
  /src/sys/external/bsd/drm2/dist/drm/vmwgfx/device_include/
svga3d_dx.h 1590 uint32 targets[SVGA3D_DX_MAX_SOTARGETS]; member in struct:SVGADXContextMobFormat::__anon66d2f9371a08

Completed in 126 milliseconds