Home
last modified time | relevance | path

Searched refs:targets (Results 76 - 100 of 724) sorted by relevance

12345678910>>...29

/third_party/vk-gl-cts/scripts/
H A Dmake_release.py155 targets = []
167 targets.append(createFileObj(os.path.join(srcBasePath, file), os.path.join(dstBasePath, file)))
169 return targets
171 # Generates multiple file targets based on filters
184 targets = createFileTargets(fullSrcPath, fullDstPath, allFiles, self.filters)
186 # Make all file targets
187 for file in targets:
205 def __init__ (self, baseConfig, generator, targets = None):
208 self.targets = targets
[all...]
/third_party/gn/tools/
H A Dfind_unreachable.py8 Finds unreachable gn targets by analysing --ide=json output
12 # Generate json file with targets info, will be located at out/project.json:
14 # Lists all targets that are not reachable from //:all or //ci:test_all:
16 # Lists targets unreachable from //:all that aren't referenced by any other target:
37 def find_source_targets_from(targets, graph):
38 source_targets = set(targets)
39 for target in targets:
46 Tool to find unreachable targets.
47 This can be useful to inspect forgotten targets,
48 for example tests or intermediate targets i
[all...]
/third_party/rust/crates/clap/
H A DMakefile28 cargo check ${_FEATURES_${@:check-%=%}} --all-targets ${ARGS}
31 cargo test ${_FEATURES_${@:build-%=%}} --all-targets --no-run ${ARGS}
37 cargo clippy ${_FEATURES_${@:clippy-%=%}} ${ARGS} --all-targets -- -D warnings -A deprecated
/kernel/linux/linux-5.10/arch/s390/kernel/vdso64/
H A DMakefile15 targets := $(obj-vdso64) $(obj-cvdso64) vdso64.so vdso64.so.dbg macro
30 $(targets:%=$(obj)/%.dbg): KBUILD_CFLAGS = $(KBUILD_CFLAGS_64)
31 $(targets:%=$(obj)/%.dbg): KBUILD_AFLAGS = $(KBUILD_AFLAGS_64)
34 targets += vdso64.lds
/kernel/linux/linux-6.6/arch/hexagon/kernel/
H A Dsmp.c227 struct cpumask targets; in smp_send_stop() local
228 cpumask_copy(&targets, cpu_online_mask); in smp_send_stop()
229 cpumask_clear_cpu(smp_processor_id(), &targets); in smp_send_stop() local
230 send_ipi(&targets, IPI_CPU_STOP); in smp_send_stop()
/kernel/linux/linux-6.6/arch/s390/kernel/vdso64/
H A DMakefile16 targets := $(obj-vdso64) $(obj-cvdso64) vdso64.so vdso64.so.dbg macro
32 $(targets:%=$(obj)/%.dbg): KBUILD_CFLAGS = $(KBUILD_CFLAGS_64)
33 $(targets:%=$(obj)/%.dbg): KBUILD_AFLAGS = $(KBUILD_AFLAGS_64)
36 targets += vdso64.lds
/kernel/linux/linux-6.6/arch/s390/kernel/vdso32/
H A DMakefile12 targets := $(obj-vdso32) vdso32.so vdso32.so.dbg macro
28 $(targets:%=$(obj)/%.dbg): KBUILD_CFLAGS = $(KBUILD_CFLAGS_32)
29 $(targets:%=$(obj)/%.dbg): KBUILD_AFLAGS = $(KBUILD_AFLAGS_32)
32 targets += vdso32.lds
/third_party/skia/third_party/externals/angle2/scripts/
H A Dgen_angle_gn_info_json.py70 def create_build_description(gn_out, targets):
73 logging.debug("targets = %s" % targets)
75 for target in targets:
101 'targets',
106 desc = create_build_description(args.gn_out, args.targets)
/kernel/linux/linux-5.10/net/nfc/
H A Dcore.c189 * nfc_start_poll - start polling for nfc targets
194 * The device remains polling for targets until a target is found or
236 * nfc_stop_poll - stop polling for nfc targets
272 if (dev->targets[i].idx == target_idx) in nfc_find_target()
273 return &dev->targets[i]; in nfc_find_target()
747 * nfc_targets_found - inform that targets were found
749 * @dev: The nfc device that found the targets
750 * @targets: array of nfc targets found
751 * @n_targets: targets arra
762 nfc_targets_found(struct nfc_dev *dev, struct nfc_target *targets, int n_targets) nfc_targets_found() argument
[all...]
/kernel/linux/linux-6.6/net/nfc/
H A Dcore.c189 * nfc_start_poll - start polling for nfc targets
195 * The device remains polling for targets until a target is found or
237 * nfc_stop_poll - stop polling for nfc targets
273 if (dev->targets[i].idx == target_idx) in nfc_find_target()
274 return &dev->targets[i]; in nfc_find_target()
753 * nfc_targets_found - inform that targets were found
755 * @dev: The nfc device that found the targets
756 * @targets: array of nfc targets found
757 * @n_targets: targets arra
768 nfc_targets_found(struct nfc_dev *dev, struct nfc_target *targets, int n_targets) nfc_targets_found() argument
[all...]
/third_party/mesa3d/src/mesa/main/
H A Dtransformfeedback.c117 /* Unreference targets. */ in delete_transform_feedback()
119 pipe_so_target_reference(&obj->targets[i], NULL); in delete_transform_feedback()
429 ARRAY_SIZE(obj->targets)); in begin_transform_feedback()
440 if (!obj->targets[i] || in begin_transform_feedback()
441 obj->targets[i] == obj->draw_count[stream] || in begin_transform_feedback()
442 obj->targets[i]->buffer != bo->buffer || in begin_transform_feedback()
443 obj->targets[i]->buffer_offset != obj->Offset[i] || in begin_transform_feedback()
444 obj->targets[i]->buffer_size != obj->Size[i]) { in begin_transform_feedback()
451 pipe_so_target_reference(&obj->targets[i], NULL); in begin_transform_feedback()
452 obj->targets[ in begin_transform_feedback()
[all...]
/third_party/gn/src/gn/
H A Dcommand_ls.cc19 const char kLs_HelpShort[] = "ls: List matching targets.";
24 Lists all targets matching the given pattern for the given build directory.
25 By default, only targets in the default toolchain will be matched unless a
28 If the label pattern is unspecified, list all targets. The label pattern is
41 Lists all targets in the default toolchain.
44 Lists all targets in the directory base and all subdirectories.
47 Lists all targets defined in //base/BUILD.gn.
56 Builds all targets in //base and all subdirectories.
91 // List all resolved targets in the default toolchain.
97 // List all resolved targets
[all...]
H A Declipse_writer.cc79 std::vector<const Target*> targets = builder_.GetAllResolvedTargets(); in GetAllIncludeDirs() local
80 for (const Target* target : targets) { in GetAllIncludeDirs()
94 std::vector<const Target*> targets = builder_.GetAllResolvedTargets(); in GetAllDefines() local
95 for (const Target* target : targets) { in GetAllDefines()
H A Dcommand_gen.cc138 // if no targets generate the file. This is brute force since this is an
142 std::vector<const Target*> targets = builder.GetAllResolvedTargets(); in FindTargetThatGeneratesFile() local
143 if (targets.empty()) in FindTargetThatGeneratesFile()
146 OutputFile output_file(targets[0]->settings()->build_settings(), file); in FindTargetThatGeneratesFile()
147 for (const Target* target : targets) { in FindTargetThatGeneratesFile()
160 const std::vector<const Target*>& targets) { in PrintInvalidGeneratedInput()
167 targets[0]->settings()->default_toolchain_label(); in PrintInvalidGeneratedInput()
168 for (const Target* target : targets) { in PrintInvalidGeneratedInput()
180 const std::string target_str = targets.size() > 1 ? "targets" in PrintInvalidGeneratedInput()
158 PrintInvalidGeneratedInput(const Builder& builder, const SourceFile& file, const std::vector<const Target*>& targets) PrintInvalidGeneratedInput() argument
214 std::vector<const Target*> targets; CheckForInvalidGeneratedInputs() local
[all...]
/third_party/node/test/parallel/
H A Dtest-policy-dependency-conditions.js48 const targets = [root];
73 targets[depth + 1] = target;
77 targets[depth][condition] = target;
109 'no prior targets matched',
/kernel/linux/linux-5.10/arch/arm64/kvm/vgic/
H A Dvgic-mmio-v2.c114 int targets = (val >> 16) & 0xff; in vgic_mmio_write_sgir() local
121 case 0x0: /* as specified by targets */ in vgic_mmio_write_sgir()
124 targets = (1U << nr_vcpus) - 1; /* all, ... */ in vgic_mmio_write_sgir()
125 targets &= ~(1U << source_vcpu->vcpu_id); /* but self */ in vgic_mmio_write_sgir()
128 targets = (1U << source_vcpu->vcpu_id); in vgic_mmio_write_sgir()
137 if (!(targets & (1U << c))) in vgic_mmio_write_sgir()
161 val |= (u64)irq->targets << (i * 8); in vgic_mmio_read_target()
188 irq->targets = (val >> (i * 8)) & cpu_mask; in vgic_mmio_write_target()
189 target = irq->targets ? __ffs(irq->targets) in vgic_mmio_write_target()
[all...]
/kernel/linux/linux-6.6/arch/arm64/kvm/vgic/
H A Dvgic-mmio-v2.c126 int targets = (val >> 16) & 0xff; in vgic_mmio_write_sgir() local
132 case 0x0: /* as specified by targets */ in vgic_mmio_write_sgir()
135 targets = (1U << nr_vcpus) - 1; /* all, ... */ in vgic_mmio_write_sgir()
136 targets &= ~(1U << source_vcpu->vcpu_id); /* but self */ in vgic_mmio_write_sgir()
139 targets = (1U << source_vcpu->vcpu_id); in vgic_mmio_write_sgir()
148 if (!(targets & (1U << c))) in vgic_mmio_write_sgir()
172 val |= (u64)irq->targets << (i * 8); in vgic_mmio_read_target()
199 irq->targets = (val >> (i * 8)) & cpu_mask; in vgic_mmio_write_target()
200 target = irq->targets ? __ffs(irq->targets) in vgic_mmio_write_target()
[all...]
/kernel/linux/linux-5.10/arch/x86/boot/
H A DMakefile31 targets := vmlinux.bin setup.bin setup.elf bzImage macro
32 targets += fdimage fdimage144 fdimage288 image.iso mtools.conf
49 targets += $(setup-y)
65 targets += cpustr.h
98 targets += zoffset.h
/third_party/cJSON/tests/unity/auto/
H A Dstylize_as_junit.rb70 attr_writer :targets, :root, :out_file
79 results = @targets.map { |target| target.tr('\\', '/') }
234 targets = "#{options.results_dir.tr('\\', '/')}**/*.test*"
236 results = Dir[targets]
237 raise "No *.testpass, *.testfail, or *.testresults files found in '#{targets}'" if results.empty?
238 utj.targets = results
/third_party/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
H A DTestUtil.java196 public static void runUntilDone(Runnable[] targets) { in runUntilDone() argument
197 if (targets == null) { in runUntilDone()
198 throw new IllegalArgumentException("targets is null"); in runUntilDone()
200 if (targets.length == 0) { in runUntilDone()
205 for (int i = 0; i < targets.length; ++i) { in runUntilDone()
206 new TestThread(lock, targets[i]).start(); in runUntilDone()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/
H A DTestUtil.java197 public static void runUntilDone(Runnable[] targets) { in runUntilDone() argument
198 if (targets == null) { in runUntilDone()
199 throw new IllegalArgumentException("targets is null"); in runUntilDone()
201 if (targets.length == 0) { in runUntilDone()
206 for (int i = 0; i < targets.length; ++i) { in runUntilDone()
207 new TestThread(lock, targets[i]).start(); in runUntilDone()
/third_party/unity/auto/
H A Dstylize_as_junit.rb70 attr_writer :targets, :root, :out_file
79 results = @targets.map { |target| target.tr('\\', '/') }
231 targets = "#{options.results_dir.tr('\\', '/')}**/*.test*"
233 results = Dir[targets]
235 raise "No *.testpass, *.testfail, or *.testresults files found in '#{targets}'" if results.empty?
237 utj.targets = results
/kernel/linux/linux-5.10/arch/hexagon/kernel/
H A Dsmp.c227 struct cpumask targets; in smp_send_stop() local
228 cpumask_copy(&targets, cpu_online_mask); in smp_send_stop()
229 cpumask_clear_cpu(smp_processor_id(), &targets); in smp_send_stop() local
230 send_ipi(&targets, IPI_CPU_STOP); in smp_send_stop()
/kernel/linux/linux-5.10/tools/testing/selftests/
H A Dkselftest_deps.sh27 echo "- Prints pass/fail targets and libraries."
93 targets=$(egrep "^TARGETS +|^TARGETS =" Makefile | cut -d "=" -f2)
273 targets=$(echo "$targets" | grep -v "$fail_target")
293 echo -e "$targets";
/kernel/linux/linux-6.6/tools/testing/selftests/
H A Dkselftest_deps.sh27 echo "- Prints pass/fail targets and libraries."
93 targets=$(grep -E "^TARGETS +|^TARGETS =" Makefile | cut -d "=" -f2)
271 targets=$(echo "$targets" | grep -v "$fail_target")
291 echo -e "$targets";

Completed in 12 milliseconds

12345678910>>...29