HomeSort by: relevance | last modified time | path
    Searched refs:out_file (Results 1 - 25 of 64) sorted by relevancy

1 2 3

  /src/usr.bin/menuc/
mdb.c 111 FILE *out_file, *sys_file; local
141 out_file = fopen(hname, "w");
142 if (out_file == NULL) {
149 (void)fprintf(out_file, "%s",
161 (void)fprintf(out_file, "#define MSG_XLAT(x) msg_string(x)\n");
163 (void)fprintf(out_file, "#define MSG_XLAT(x) (x)\n");
165 (void)fprintf(out_file, "#define DYNAMIC_MENUS\n");
167 (void)fprintf(out_file, "#define MENU_EXPANDS\n");
169 (void)fprintf(out_file, "\n");
171 (void)fprintf(out_file,
    [all...]
  /src/sys/dev/microcode/cyclades-z/
cyzfirm2h.c 66 FILE *out_file; local
77 out_file = fopen(argv[2], "w+");
78 if (out_file == NULL)
106 fprintf(out_file, "/*\t$""NetBSD""$\t*/\n\n");
107 fprintf(out_file,
114 fprintf(out_file, "#ifndef _%s_\n", include_name);
115 fprintf(out_file, "#define\t_%s_\n\n", include_name);
117 fprintf(out_file, "static const uint8_t cycladesz_firmware[] = {\n");
122 fprintf(out_file, "\t");
125 fprintf(out_file, "0x%02x,", '_')
    [all...]
  /src/usr.bin/msgc/
msgdb.c 97 FILE *out_file; local
132 out_file = fopen (hname, "w");
133 if (out_file == NULL) {
140 (void) fprintf (out_file, "%s",
207 (void) fprintf (out_file, "#define MSG_NONE\tNULL\n");
209 (void) fprintf (out_file, "#define MSG_%s\t((msg)(long)%d)\n",
212 (void) fprintf (out_file, "\n#endif\n");
214 fclose (out_file);
217 out_file = fopen (cname, "w");
218 if (out_file == NULL)
    [all...]
  /src/external/bsd/ntp/dist/scripts/
plot_summary.in 106 my $out_file = "/tmp/tempdata$$";
113 open OUTPUT, ">$out_file" or die "$out_file: $!";
151 close OUTPUT or die "close failed on $out_file: $!";
180 print "plot $ylimit \"$out_file\"" .
182 print "\"$out_file\" using 1:(\$3-\$6/2) " .
184 print "\"$out_file\" using 1:3 smooth bezier " .
186 print "\"$out_file\" using 1:(\$3+\$6/2) " .
192 print "plot \"$out_file\" using 1:7:8:9 title \"mean frequency\", ";
193 print "\"$out_file\" using 1:(\$7-\$10/2) "
    [all...]
summary.in 124 my ($directory, $fname, $out_file) = @_;
127 open OUTPUT, ">>$out_file" or die "can't open $out_file: $!";
193 my ($directory, $fname, $out_file) = @_;
196 open OUTPUT, ">>$out_file" or die "can't open $out_file: $!";
285 my ($directory, $fname, $out_file) = @_;
288 open OUTPUT, ">>$out_file" or die "can't open $out_file: $!";
  /src/external/gpl3/binutils/dist/gprofng/src/
Print.cc 64 out_file = fopen (tmp_file, NTXT ("w"));
67 out_file = pr_params.openfile;
69 out_file = fopen (pr_params.name, NTXT ("w"));
71 if (out_file == NULL)
83 fclose (out_file);
109 if (out_file != (FILE *) NULL)
111 fclose (out_file); // close tmp_file
112 out_file = (FILE *) NULL;
153 print_load_object (out_file);
155 print_header (dbeSession->get_exp (exp_idx), out_file);
    [all...]
Print.h 81 out_file = NULL;
93 out_file = o;
112 FILE *out_file; member in class:er_print_common_display
246 void print_load_object (FILE *out_file);
247 void print_header (Experiment *exp, FILE *out_file);
250 int print_label (FILE *out_file, MetricList *metrics_list,
254 FILE *out_file, DbeView *dbev, bool xdefault);
255 void print_html_title (FILE *out_file, char *title);
256 void print_html_label (FILE *out_file, MetricList *metrics_list);
257 void print_html_content (FILE *out_file, Hist_data *d, MetricList *metrics_list
    [all...]
gp-display-src.cc 70 FILE *out_file; member in class:er_src
101 out_file = stdout;
198 if (out_file != stdout)
199 fclose (out_file);
252 stdout, stdin, out_file, dbev, false);
258 stdout, stdin, out_file, dbev, false);
262 set_outfile (arg1, out_file);
266 fprintf (out_file, GTXT ("Functions sorted in lexicographic order\n"));
267 fprintf (out_file, GTXT ("\nLoad Object: %s\n\n"), lo->get_name ());
269 fprintf (out_file, GTXT (" Address Size Name\n\n"))
    [all...]
gp-display-text.cc 166 out_file = stdout;
863 fprintf (out_file, GTXT ("\nNot available when comparing experiments\n\n"));
930 dis_file, inp_file, out_file, dbev, xdefault);
1092 set_outfile (arg1, out_file, false);
1094 dis_file = out_file;
1100 set_outfile (arg1, out_file, true);
1102 dis_file = out_file;
1247 fprintf (out_file, GTXT ("The argument to `compare' must be `on', `off', `delta', or `ratio'\n\n"));
1263 fprintf (out_file, GTXT ("The argument to `compare' must be `on', `off', `delta', or `ratio'\n\n"));
1278 fprintf (out_file, GTXT ("\nHeap trace information was not requested when recording experiments\n\n"))
    [all...]
  /src/external/gpl3/binutils.old/dist/gprofng/src/
Print.cc 64 out_file = fopen (tmp_file, NTXT ("w"));
67 out_file = pr_params.openfile;
69 out_file = fopen (pr_params.name, NTXT ("w"));
71 if (out_file == NULL)
83 fclose (out_file);
109 if (out_file != (FILE *) NULL)
111 fclose (out_file); // close tmp_file
112 out_file = (FILE *) NULL;
153 print_load_object (out_file);
155 print_header (dbeSession->get_exp (exp_idx), out_file);
    [all...]
Print.h 81 out_file = NULL;
93 out_file = o;
112 FILE *out_file; member in class:er_print_common_display
246 void print_load_object (FILE *out_file);
247 void print_header (Experiment *exp, FILE *out_file);
250 int print_label (FILE *out_file, MetricList *metrics_list,
254 FILE *out_file, DbeView *dbev, bool xdefault);
255 void print_html_title (FILE *out_file, char *title);
256 void print_html_label (FILE *out_file, MetricList *metrics_list);
257 void print_html_content (FILE *out_file, Hist_data *d, MetricList *metrics_list
    [all...]
gp-display-src.cc 70 FILE *out_file; member in class:er_src
101 out_file = stdout;
198 if (out_file != stdout)
199 fclose (out_file);
252 stdout, stdin, out_file, dbev, false);
258 stdout, stdin, out_file, dbev, false);
262 set_outfile (arg1, out_file);
266 fprintf (out_file, GTXT ("Functions sorted in lexicographic order\n"));
267 fprintf (out_file, GTXT ("\nLoad Object: %s\n\n"), lo->get_name ());
269 fprintf (out_file, GTXT (" Address Size Name\n\n"))
    [all...]
gp-display-text.cc 166 out_file = stdout;
863 fprintf (out_file, GTXT ("\nNot available when comparing experiments\n\n"));
930 dis_file, inp_file, out_file, dbev, xdefault);
1092 set_outfile (arg1, out_file, false);
1094 dis_file = out_file;
1100 set_outfile (arg1, out_file, true);
1102 dis_file = out_file;
1247 fprintf (out_file, GTXT ("The argument to `compare' must be `on', `off', `delta', or `ratio'\n\n"));
1263 fprintf (out_file, GTXT ("The argument to `compare' must be `on', `off', `delta', or `ratio'\n\n"));
1278 fprintf (out_file, GTXT ("\nHeap trace information was not requested when recording experiments\n\n"))
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/selftests/
igt_mmap.c 34 goto out_file;
41 out_file:
  /src/external/bsd/wpa/dist/src/utils/
wpa_debug.c 35 static FILE *out_file = NULL; variable
79 if (out_file)
80 fprintf(out_file, "%ld.%06u: ", (long) tv.sec,
83 if (!out_file && !wpa_debug_syslog)
229 if (out_file) {
231 vfprintf(out_file, fmt, ap);
232 fprintf(out_file, "\n");
236 if (!wpa_debug_syslog && !out_file) {
356 if (out_file) {
357 fprintf(out_file, "%s - hexdump(len=%lu):"
    [all...]
  /src/external/public-domain/xz/dist/doc/examples_old/
xz_pipe_comp.c 46 /* note: in_file and out_file must be open already */
47 int xz_compress (FILE *in_file, FILE *out_file)
107 fwrite (out_buf, 1, out_len, out_file);
108 if (ferror (out_file)) {
xz_pipe_decomp.c 34 /* note: in_file and out_file must be open already */
35 int xz_decompress (FILE *in_file, FILE *out_file)
95 fwrite (out_buf, 1, out_len, out_file);
96 if (ferror (out_file)) {
  /src/sys/external/bsd/drm2/dist/drm/i915/gem/selftests/
i915_gem_context.c 70 goto out_file;
77 goto out_file;
93 goto out_file;
107 goto out_file;
118 goto out_file;
131 goto out_file;
176 goto out_file;
184 out_file:
309 goto out_file;
319 goto out_file;
    [all...]
  /src/external/gpl3/gdb/dist/gdb/dwarf2/
index-write.c 1123 /* Write a gdb index file to OUT_FILE from all the sections passed as
1127 write_gdbindex_1 (FILE *out_file,
1175 if (out_file == nullptr)
1178 contents.file_write (out_file);
1179 cu_list.file_write (out_file);
1180 types_cu_list.file_write (out_file);
1181 addr_vec.file_write (out_file);
1182 symtab_vec.file_write (out_file);
1183 shortcuts.file_write (out_file);
1184 constant_pool.file_write (out_file);
1535 gdb_file_up out_file; member in struct:index_wip_file
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/dwarf2/
index-write.c 1125 /* Write a gdb index file to OUT_FILE from all the sections passed as
1129 write_gdbindex_1 (FILE *out_file,
1177 if (out_file == nullptr)
1180 contents.file_write (out_file);
1181 cu_list.file_write (out_file);
1182 types_cu_list.file_write (out_file);
1183 addr_vec.file_write (out_file);
1184 symtab_vec.file_write (out_file);
1185 shortcuts.file_write (out_file);
1186 constant_pool.file_write (out_file);
1537 gdb_file_up out_file; member in struct:index_wip_file
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_symbolizer_mac.cc 84 char **out_module, char **out_file, uptr *line,
115 if (out_file) {
117 rest = ExtractTokenUpToDelimiter(rest, ":", out_file);
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_symbolizer_mac.cpp 106 char **out_module, char **out_file, uptr *line,
137 if (out_file) {
139 rest = ExtractTokenUpToDelimiter(rest, ":", out_file);
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.dwarf2/
dw2-dir-file-name.exp 291 proc out_file { func compdir ldir } {
298 out_file $func $compdir "missing_"
299 out_file $func $compdir "relative"
300 out_file $func $compdir "absolute"
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.dwarf2/
dw2-dir-file-name.exp 291 proc out_file { func compdir ldir } {
298 out_file $func $compdir "missing_"
299 out_file $func $compdir "relative"
300 out_file $func $compdir "absolute"
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_symbolizer_mac.cpp 152 char **out_module, char **out_file, uptr *line,
183 if (out_file) {
185 rest = ExtractTokenUpToDelimiter(rest, ":", out_file);

Completed in 43 milliseconds

1 2 3