| /utopia/UTPA2-700.0.x/projects/build/scripts/kconfig/ |
| H A D | zconf.y | 598 static void print_quoted_string(FILE *out, const char *str) in print_quoted_string() argument 603 putc('"', out); in print_quoted_string() 607 fprintf(out, "%.*s", len, str); in print_quoted_string() 608 fputs("\\\"", out); in print_quoted_string() 611 fputs(str, out); in print_quoted_string() 612 putc('"', out); in print_quoted_string() 615 static void print_symbol(FILE *out, struct menu *menu) in print_symbol() argument 621 fprintf(out, "\nchoice\n"); in print_symbol() 623 fprintf(out, "\nconfig %s\n", sym->name); in print_symbol() 626 fputs(" boolean\n", out); in print_symbol() [all …]
|
| H A D | zconf.tab.c | 2353 static void print_quoted_string(FILE *out, const char *str) in print_quoted_string() argument 2358 putc('"', out); in print_quoted_string() 2362 fprintf(out, "%.*s", len, str); in print_quoted_string() 2363 fputs("\\\"", out); in print_quoted_string() 2366 fputs(str, out); in print_quoted_string() 2367 putc('"', out); in print_quoted_string() 2370 static void print_symbol(FILE *out, struct menu *menu) in print_symbol() argument 2376 fprintf(out, "\nchoice\n"); in print_symbol() 2378 fprintf(out, "\nconfig %s\n", sym->name); in print_symbol() 2381 fputs(" boolean\n", out); in print_symbol() [all …]
|
| H A D | confdata.c | 422 const char *str, FILE *out) in conf_write_string() argument 426 fprintf(out, "#define %s%s \"", CONFIG_, name); in conf_write_string() 428 fprintf(out, "%s%s=\"", CONFIG_, name); in conf_write_string() 433 xfwrite(str, l, 1, out); in conf_write_string() 438 fprintf(out, "\\%c", *str++); in conf_write_string() 440 fputs("\"\n", out); in conf_write_string() 443 static void conf_write_symbol(struct symbol *sym, FILE *out, bool write_no) in conf_write_symbol() argument 453 fprintf(out, "# %s%s is not set\n", in conf_write_symbol() 457 fprintf(out, "%s%s=m\n", CONFIG_, sym->name); in conf_write_symbol() 460 fprintf(out, "%s%s=y\n", CONFIG_, sym->name); in conf_write_symbol() [all …]
|
| H A D | zconf.tab.c_shipped | 2353 static void print_quoted_string(FILE *out, const char *str) 2358 putc('"', out); 2362 fprintf(out, "%.*s", len, str); 2363 fputs("\\\"", out); 2366 fputs(str, out); 2367 putc('"', out); 2370 static void print_symbol(FILE *out, struct menu *menu) 2376 fprintf(out, "\nchoice\n"); 2378 fprintf(out, "\nconfig %s\n", sym->name); 2381 fputs(" boolean\n", out); [all …]
|
| H A D | util.c | 38 FILE *out; in file_write_dep() local 42 out = fopen("..config.tmp", "w"); in file_write_dep() 43 if (!out) in file_write_dep() 45 fprintf(out, "deps_config := \\\n"); in file_write_dep() 48 fprintf(out, "\t%s \\\n", file->name); in file_write_dep() 50 fprintf(out, "\t%s\n", file->name); in file_write_dep() 52 fprintf(out, "\n%s: \\\n" in file_write_dep() 66 fprintf(out, "ifneq \"$(%s)\" \"%s\"\n", env_sym->name, value); in file_write_dep() 67 fprintf(out, "%s: FORCE\n", conf_get_autoconfig_name()); in file_write_dep() 68 fprintf(out, "endif\n"); in file_write_dep() [all …]
|
| H A D | kxgettext.c | 75 goto out; in file_line__new() 80 out: in file_line__new() 99 goto out; in message__new() 111 out: in message__new() 118 goto out; in message__new() 141 goto out; in message__add_file_line() 146 out: in message__add_file_line()
|
| H A D | lkc.h | 76 void zconfdump(FILE *out); 96 static inline void xfwrite(const void *str, size_t len, size_t count, FILE *out) in xfwrite() argument 98 if (fwrite(str, len, count, out) < count) in xfwrite()
|
| H A D | lex.zconf.c_shipped | 1607 YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" ); 1798 /* Flush out information for old buffer. */ 1835 YY_FATAL_ERROR( "out of dynamic memory in zconf_create_buffer()" ); 1844 YY_FATAL_ERROR( "out of dynamic memory in zconf_create_buffer()" ); 1943 /* Flush out information for old buffer. */ 1997 YY_FATAL_ERROR( "out of dynamic memory in zconfensure_buffer_stack()" ); 2017 YY_FATAL_ERROR( "out of dynamic memory in zconfensure_buffer_stack()" ); 2043 YY_FATAL_ERROR( "out of dynamic memory in zconf_scan_buffer()" ); 2092 YY_FATAL_ERROR( "out of dynamic memory in zconf_scan_bytes()" );
|
| H A D | symbol.c | 1081 goto out; in sym_check_sym_deps() 1099 out: in sym_check_sym_deps() 1122 goto out; in sym_check_choice_deps() 1129 out: in sym_check_choice_deps()
|
| /utopia/UTPA2-700.0.x/projects/build/scripts/ |
| H A D | pnmtologo.c | 28 static FILE *out; variable 225 out = fopen(outputname, "w"); in write_header() 226 if (!out) in write_header() 229 out = stdout; in write_header() 232 fputs("/*\n", out); in write_header() 233 fputs(" * DO NOT EDIT THIS FILE!\n", out); in write_header() 234 fputs(" *\n", out); in write_header() 235 fprintf(out, " * It was automatically generated from %s\n", filename); in write_header() 236 fputs(" *\n", out); in write_header() 237 fprintf(out, " * Linux logo %s\n", logoname); in write_header() [all …]
|
| H A D | Makefile.lib | 18 obj-m := $(filter-out $(obj-y),$(obj-m)) 23 lib-y := $(filter-out $(obj-y), $(sort $(lib-y) $(lib-m))) 43 obj-m := $(filter-out %/, $(obj-m)) 53 single-used-m := $(sort $(filter-out $(multi-used-m),$(obj-m))) 69 real-objs-y := $(foreach m, $(filter-out $(subdir-obj-y), $(obj-y)), $(if $(strip $($(m:.o=-objs)) … 106 _c_flags = $(filter-out $(CFLAGS_REMOVE_$(basetarget).o), $(orig_c_flags)) 188 $(filter-out FORCE,$^) -o $@ 200 cmd_gzip = (cat $(filter-out FORCE,$^) | gzip -n -f -9 > $@) || \ 283 cmd_xzkern = (cat $(filter-out FORCE,$^) | \ 285 $(call size_append, $(filter-out FORCE,$^))) > $@ || \ [all …]
|
| H A D | headers_install.pl | 30 open(my $out, '>', $tmpfile) 42 printf {$out} "%s", $line; 44 close $out;
|
| H A D | Kbuild.include | 171 $(if $(filter-out -I/%,$(1)),$(patsubst -I%,-I$(srctree)/%,$(1))) $(1)) 198 arg-check = $(strip $(filter-out $(cmd_$(1)), $(cmd_$@)) \ 199 $(filter-out $(cmd_$@), $(cmd_$(1))) ) 212 any-prereq = $(filter-out $(PHONY),$?) $(filter-out $(PHONY) $(wildcard $^),$^)
|
| H A D | Makefile.clean | 48 __clean-files := $(filter-out $(no-clean-files), $(__clean-files)) 54 $(addprefix $(obj)/, $(filter-out /%, $(__clean-files))) \ 61 $(addprefix $(obj)/, $(filter-out /%, $(clean-dirs))) \
|
| H A D | Makefile.modpost | 86 quiet_cmd_modpost = MODPOST $(words $(filter-out vmlinux FORCE, $^)) modules 91 $(call cmd,modpost) $(wildcard vmlinux) $(filter-out FORCE,$^) 122 -o $@ $(filter-out FORCE,$^)
|
| H A D | Makefile.headersinst | 24 header-y := $(filter-out %/, $(header-y)) 35 header-y := $(filter-out $(generic-y), $(header-y)) 43 unwanted := $(filter-out $(all-files),$(oldheaders))
|
| H A D | export_report.pl | 85 open (my $out, '>', $opt{'o'}) 88 select $out;
|
| /utopia/UTPA2-700.0.x/projects/tools/lint/mips-linux-gnu_include/linux/ |
| H A D | coda.h | 379 struct coda_out_hdr out; member 390 struct coda_out_hdr out; member 401 struct coda_out_hdr out; member 441 struct coda_out_hdr out; member 452 struct coda_out_hdr out; member 500 struct coda_out_hdr out; member 512 struct coda_out_hdr out; member 526 struct coda_out_hdr out; member 552 struct coda_out_hdr out; member 565 struct coda_out_hdr out; member [all …]
|
| /utopia/UTPA2-700.0.x/modules/usb/drv/usb_ecos/usbhost/include/ |
| H A D | drvUSB.h | 622 #define usb_maxpacket(dev, pipe, out) (out \ argument 654 #define usb_endpoint_running(dev, ep, out) ((dev)->halted[out] &= ~(1 << (ep))) argument 655 #define usb_endpoint_halted(dev, ep, out) ((dev)->halted[out] & (1 << (ep))) argument 672 #define usb_gettoggle(dev, ep, out) (((dev)->toggle[out] >> (ep)) & 1) argument 673 #define usb_dotoggle(dev, ep, out) ((dev)->toggle[out] ^= (1 << (ep))) argument 674 #define usb_settoggle(dev, ep, out, bit) ((dev)->toggle[out] = ((dev)->toggle[out] & ~(1 << (ep))) … argument
|
| /utopia/UTPA2-700.0.x/modules/usb/drv/usb_ecos/newhost/include/ |
| H A D | drvUSBHost.h | 401 #define usb_maxpacket(dev, pipe, out) (out \ argument 422 #define usb_gettoggle(dev, ms_ep, out) (((dev)->toggle[out] >> (ms_ep)) & 1) argument 423 #define usb_dotoggle(dev, ms_ep, out) ((dev)->toggle[out] ^= (1 << (ms_ep))) argument 424 #define usb_settoggle(dev, ms_ep, out, bit) ((dev)->toggle[out] = ((dev)->toggle[out] & ~(1 << (ms_… argument
|
| /utopia/UTPA2-700.0.x/projects/build/scripts/mod/ |
| H A D | sumversion.c | 199 static void md4_final_ascii(struct md4_ctx *mctx, char *out, unsigned int len) in md4_final_ascii() argument 221 snprintf(out, len, "%08X%08X%08X%08X", in md4_final_ascii() 330 goto out; in parse_source_files() 393 out: in parse_source_files() 470 goto out; in write_version() 476 goto out; in write_version() 478 out: in write_version()
|
| /utopia/UTPA2-700.0.x/projects/build/scripts/dtc/ |
| H A D | dtc-lexer.lex.c_shipped | 1302 YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" ); 1481 /* Flush out information for old buffer. */ 1518 YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); 1527 YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); 1626 /* Flush out information for old buffer. */ 1680 YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); 1700 YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); 1726 YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); 1775 YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );
|
| H A D | checks.c | 141 goto out; in run_check() 156 goto out; in run_check() 168 out: in run_check()
|
| /utopia/UTPA2-700.0.x/projects/build/scripts/genksyms/ |
| H A D | lex.c_shipped | 1381 YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" ); 1638 /* Flush out information for old buffer. */ 1683 YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); 1692 YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); 1824 /* Flush out information for old buffer. */ 1890 YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); 1910 YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); 1938 YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); 1991 YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );
|
| /utopia/UTPA2-700.0.x/projects/tools/lint/lnt/ |
| H A D | co-gnu3.lnt | 56 // (no warnings, just syntax errors). Comment out if you 78 // 796 and 797 (out-of-bounds errors). 191 -d__EXCEPTIONS // make sure try and catch are not redefined out
|