| /scripts/kconfig/ |
| A D | zconf.y | 634 putc('"', out); in print_quoted_string() 639 fputs("\\\"", out); in print_quoted_string() 642 fputs(str, out); in print_quoted_string() 643 putc('"', out); in print_quoted_string() 686 fputc('\n', out); in print_symbol() 695 fputc('\n', out); in print_symbol() 703 fputc('\n', out); in print_symbol() 708 fputc('\n', out); in print_symbol() 713 fputc('\n', out); in print_symbol() 718 fputc('\n', out); in print_symbol() [all …]
|
| A D | confdata.c | 707 FILE *out; in conf_write_defconfig() local 710 if (!out) in conf_write_defconfig() 772 fclose(out); in conf_write_defconfig() 778 FILE *out; in conf_write() local 816 if (!out) in conf_write() 858 fclose(out); in conf_write() 879 FILE *out; in conf_write_dep() local 884 if (!out) in conf_write_dep() 899 fclose(out); in conf_write_dep() 1007 out: in conf_split_config() [all …]
|
| A D | preprocess.c | 496 char *expansion, *out; in __expand_string() local 499 out = xmalloc(1); in __expand_string() 500 *out = 0; in __expand_string() 511 out = xrealloc(out, out_len); in __expand_string() 512 strncat(out, in, in_len); in __expand_string() 513 strcat(out, expansion); in __expand_string() 527 out = xrealloc(out, out_len); in __expand_string() 528 strncat(out, in, in_len); in __expand_string() 533 return out; in __expand_string()
|
| A D | lkc.h | 57 void zconfdump(FILE *out); 75 static inline void xfwrite(const void *str, size_t len, size_t count, FILE *out) in xfwrite() argument 79 if (fwrite(str, len, count, out) != count) in xfwrite()
|
| A D | symbol.c | 1174 goto out; in sym_check_sym_deps() 1179 goto out; in sym_check_sym_deps() 1184 goto out; in sym_check_sym_deps() 1205 out: in sym_check_sym_deps() 1228 goto out; in sym_check_choice_deps() 1235 out: in sym_check_choice_deps()
|
| A D | expr.h | 311 void expr_fprint(struct expr *e, FILE *out);
|
| A D | expr.c | 1237 void expr_fprint(struct expr *e, FILE *out) in expr_fprint() argument 1239 expr_print(e, expr_print_file_helper, out, E_NONE); in expr_fprint()
|
| /scripts/ |
| A D | event_dump.py | 79 out = tools.run(*cmd).strip() 82 if out.startswith(src_path): 83 out = out[len(src_path) + 1:] 84 print('%-20s %-30s %s' % (evtype, id_str or f'f:{func_name}', out))
|
| A D | style.py | 145 with open(srcfile, 'w', encoding='utf-8') as out: 146 out.write(data) 154 with open(fname, 'w', encoding='utf-8') as out: 155 out.write(newdata)
|
| A D | Makefile.clean | 50 __clean-files := $(filter-out $(no-clean-files), $(__clean-files)) 57 $(addprefix $(obj)/, $(filter-out $(objtree)/%, $(__clean-files))) \ 63 $(addprefix $(obj)/, $(filter-out $(objtree)/%, $(clean-dirs))) \
|
| A D | Makefile.lib | 17 obj-m := $(filter-out $(obj-y),$(obj-m)) 21 lib-y := $(filter-out $(obj-y), $(sort $(lib-y) $(lib-m))) 39 obj-m := $(filter-out %/, $(obj-m)) 55 single-used-m := $(sort $(filter-out $(multi-used-m),$(obj-m))) 127 _c_flags = $(filter-out $(CFLAGS_REMOVE_$(basetarget).o), $(orig_c_flags)) 130 _a_flags = $(filter-out $(AFLAGS_REMOVE_$(basetarget).o), $(orig_a_flags))
|
| A D | mkmakefile | 37 \$(filter-out __sub-make, \$(MAKECMDGOALS)): __sub-make
|
| A D | Kbuild.include | 32 real-prereqs = $(filter-out $(PHONY), $^) 40 real-prereqs = $(filter-out $(PHONY), $^) 217 $(if $(filter-out -I/% -I./% -I../%,$(1)),$(patsubst -I%,-I$(srctree)/%,$(1)),$(1)),$(1)) 244 arg-check = $(filter-out $(subst $(space),$(space_escape),$(strip $(cmd_$@))), \ 260 any-prereq = $(filter-out $(PHONY),$?) $(filter-out $(PHONY) $(wildcard $^),$^)
|
| A D | Makefile.build | 130 …cmd_cc_s_c = $(CC) $(filter-out $(DEBUG_CFLAGS), $(c_flags)) $(DISABLE_LTO) -fverbose-asm -S -o $@… 389 targets += $(filter-out $(subdir-obj-y), $(real-obj-y)) $(real-obj-m) $(lib-y) 488 targets := $(filter-out $(PHONY), $(targets)) 532 obj-dirs := $(strip $(filter-out $(existing-dirs), $(obj-dirs)))
|
| A D | Makefile.gcc-plugins | 51 GCC_PLUGINS_CFLAGS := $(filter-out %/sancov_plugin.so, $(GCC_PLUGINS_CFLAGS))
|
| A D | Makefile.xpl | 143 PLATFORM_LIBS := $(filter-out %/lib.a, $(filter-out -lgcc, $(PLATFORM_LIBS))) $(PLATFORM_LIBGCC) 305 cmd_cat = cat $(filter-out $(PHONY), $^) > $@ 364 cmd_plat = $(CC) $(c_flags) -c $< -o $(filter-out $(PHONY),$@) 493 $(CC) $(filter-out $(LTO_CFLAGS),$(c_flags)) -c -o $@ $<
|
| /scripts/basic/ |
| A D | Makefile | 16 $(addprefix $(obj)/,$(filter-out fixdep,$(always))): $(obj)/fixdep
|
| /scripts/dtc/ |
| A D | checks.c | 135 goto out; in run_check() 150 goto out; in run_check() 159 out: in run_check()
|
| /scripts/dtc/pylibfdt/ |
| A D | libfdt.i_shipped | 759 INC_SIZE = 1024 # Expand size by this much when out of space 1032 %typemap(out) (struct fdt_property *) { 1047 %typemap(out) (const void *) {
|