Home
last modified time | relevance | path

Searched refs:target (Results 1 – 17 of 17) sorted by relevance

/scripts/
Dmarkup_oops.pl37 my $target = "0";
159 $target = $1;
162 $target = $1;
183 my $decodestart = Math::BigInt->from_hex("0x$target") - Math::BigInt->from_hex("0x$func_offset");
184 my $decodestop = Math::BigInt->from_hex("0x$target") + 8192;
185 if ($target eq "0") {
206 …$vmaoffset = Math::BigInt->from_hex("0x$target") - Math::BigInt->from_hex("0x$fu") - Math::BigInt-…
219 my ($address, $target) = @_;
221 my $ta = "0x".$target;
242 if (InRange($1, $target)) {
[all …]
DMakefile.userprogs20 $($(target-stem)-userccflags)
21 user_ldflags = $(KBUILD_USERLDFLAGS) $(userldflags) $($(target-stem)-userldflags)
26 $($(target-stem)-userldlibs)
33 $(addprefix $(obj)/, $($(target-stem)-objs)) \
34 $($(target-stem)-userldlibs)
DMakefile.host71 $(HOSTCFLAGS_$(target-stem).o)
73 $(HOSTCXXFLAGS_$(target-stem).o)
93 $(KBUILD_HOSTLDLIBS) $(HOSTLDLIBS_$(target-stem))
101 $(addprefix $(obj)/, $($(target-stem)-objs)) \
102 $(KBUILD_HOSTLDLIBS) $(HOSTLDLIBS_$(target-stem))
119 $(addprefix $(obj)/, $($(target-stem)-$(o)))) \
120 $(KBUILD_HOSTLDLIBS) $(HOSTLDLIBS_$(target-stem))
DKbuild.include15 # Name of target with a '.' as filename prefix. foo/bar.o => foo/.bar.o
16 dot-target = $(dir $@).$(notdir $@)
21 depfile = $(subst $(comma),_,$(dot-target).d)
24 # filename of target with directory and extension stripped
62 trap "rm -f $(dot-target).tmp" EXIT; \
63 { $(filechk_$(1)); } > $(dot-target).tmp; \
64 if [ ! -r $@ ] || ! cmp -s $@ $(dot-target).tmp; then \
66 mv -f $(dot-target).tmp $@; \
182 # Delete the target on interruption
184 # GNU Make automatically deletes the target if it has already been changed by
[all …]
Dgenerate_cfi_kallsyms.pl108 my ($target) = @_;
110 my ($symbol, $expr, $offset) = $target =~ /^(\S*)([-\+])0x([a-f0-9]+)?$/;
113 return $target;
DMakefile.package59 +rpmbuild $(RPMOPTS) --target $(UTS_MACHINE) -ta $(KERNELPATH).tar.gz \
68 +rpmbuild $(RPMOPTS) --define "_builddir $(objtree)" --target \
102 snapcraft --target-arch=$(UTS_MACHINE)
133 $(error unknown target $@)))) \
DMakefile.lib129 target-stem = $(basename $(patsubst $(obj)/%,%,$@))
141 _c_flags = $(filter-out $(CFLAGS_REMOVE_$(target-stem).o), \
144 $(CFLAGS_$(target-stem).o))
145 _a_flags = $(filter-out $(AFLAGS_REMOVE_$(target-stem).o), \
148 $(AFLAGS_$(target-stem).o))
149 _cpp_flags = $(KBUILD_CPPFLAGS) $(cppflags-y) $(CPPFLAGS_$(target-stem).lds)
386 dtc-tmp = $(subst $(comma),_,$(dot-target).dts.tmp)
Ddev-needs.sh10 This script needs to be run on the target device once it has booted to a
DMakefile.build247 $(CONFIG_SHELL) $(srctree)/scripts/gen_ksymdeps.sh $@ >> $(dot-target).cmd
/scripts/dtc/
Ddtc-parser.y179 struct node *target = get_node_by_ref($1, $3); variable
181 if (target) {
182 add_label(&target->labels, $2);
183 merge_nodes(target, $4);
198 struct node *target = get_node_by_ref($1, $2); variable
200 if (target)
201 merge_nodes(target, $3);
209 struct node *target = get_node_by_ref($1, $2); variable
211 if (target) {
212 merge_nodes(target, $3);
[all …]
/scripts/basic/
Dfixdep.c305 static void parse_dep_file(char *m, const char *target) in parse_dep_file() argument
353 target, m); in parse_dep_file()
354 xprintf("deps_%s := \\\n", target); in parse_dep_file()
381 xprintf("\n%s: $(deps_%s)\n\n", target, target); in parse_dep_file()
382 xprintf("$(deps_%s):\n", target); in parse_dep_file()
387 const char *depfile, *target, *cmdline; in main() local
394 target = argv[2]; in main()
397 xprintf("cmd_%s := %s\n\n", target, cmdline); in main()
400 parse_dep_file(buf, target); in main()
/scripts/dtc/libfdt/
Dfdt_overlay.c557 static int overlay_apply_node(void *fdt, int target, in overlay_apply_node() argument
576 ret = fdt_setprop(fdt, target, name, prop, prop_len); in overlay_apply_node()
586 nnode = fdt_add_subnode(fdt, target, name); in overlay_apply_node()
588 nnode = fdt_subnode_offset(fdt, target, name); in overlay_apply_node()
625 int target; in overlay_merge() local
639 target = overlay_get_target(fdt, fdto, fragment, NULL); in overlay_merge()
640 if (target < 0) in overlay_merge()
641 return target; in overlay_merge()
643 ret = overlay_apply_node(fdt, target, fdto, overlay); in overlay_merge()
697 int root_sym, ov_sym, prop, path_len, fragment, target; in overlay_symbol_update() local
[all …]
/scripts/gcc-plugins/
DMakefile51 $(addprefix $(obj)/, $($(target-stem)-objs))
/scripts/kconfig/
Dexpr.h280 struct menu *target; member
DMakefile93 $(if $(call configfiles),, $(error No configuration exists for this target on this architecture))
Dmenu.c769 jump->target = prop->menu; in get_prompt_str()
771 jump->target = location; in get_prompt_str()
Dmconf.c379 data->targets[k] = pos->target; in update_text()