Searched refs:outfile (Results 1 - 135 of 135) sorted by relevance

/linux-4.4.14/arch/x86/entry/vdso/
H A Dvdso2c.h9 FILE *outfile, const char *name) go()
131 fwrite(stripped_addr, stripped_len, 1, outfile); go()
137 fprintf(outfile, "/* AUTOMATICALLY GENERATED -- DO NOT EDIT */\n\n"); go()
138 fprintf(outfile, "#include <linux/linkage.h>\n"); go()
139 fprintf(outfile, "#include <asm/page_types.h>\n"); go()
140 fprintf(outfile, "#include <asm/vdso.h>\n"); go()
141 fprintf(outfile, "\n"); go()
142 fprintf(outfile, go()
147 fprintf(outfile, "\n\t"); go()
148 fprintf(outfile, "0x%02X, ", go()
151 fprintf(outfile, "\n};\n\n"); go()
153 fprintf(outfile, "static struct page *pages[%lu];\n\n", go()
156 fprintf(outfile, "const struct vdso_image %s = {\n", name); go()
157 fprintf(outfile, "\t.data = raw_data,\n"); go()
158 fprintf(outfile, "\t.size = %lu,\n", mapping_size); go()
159 fprintf(outfile, "\t.text_mapping = {\n"); go()
160 fprintf(outfile, "\t\t.name = \"[vdso]\",\n"); go()
161 fprintf(outfile, "\t\t.pages = pages,\n"); go()
162 fprintf(outfile, "\t},\n"); go()
164 fprintf(outfile, "\t.alt = %lu,\n", go()
166 fprintf(outfile, "\t.alt_len = %lu,\n", go()
171 fprintf(outfile, "\t.sym_%s = %" PRIi64 ",\n", go()
174 fprintf(outfile, "};\n"); go()
7 go(void *raw_addr, size_t raw_len, void *stripped_addr, size_t stripped_len, FILE *outfile, const char *name) go() argument
H A Dvdso2c.c170 FILE *outfile, const char *name) go()
176 outfile, name); go()
179 outfile, name); go()
209 FILE *outfile; main() local
242 outfile = fopen(outfilename, "w"); main()
243 if (!outfile) main()
246 go(raw_addr, raw_len, stripped_addr, stripped_len, outfile, name); main()
250 fclose(outfile); main()
168 go(void *raw_addr, size_t raw_len, void *stripped_addr, size_t stripped_len, FILE *outfile, const char *name) go() argument
/linux-4.4.14/Documentation/dvb/
H A Dget_dvb_firmware41 $outfile = eval($cid);
44 Firmware(s) $outfile extracted successfully.
66 my $outfile = "dvb-fe-sp8870.fw";
74 copy("$tmpdir/software/OEM/HE/App/boot/SC_MAIN.MC", $outfile);
76 $outfile;
84 my $outfile = "dvb-fe-sp887x.fw";
94 copy("$tmpdir/ZEnglish/sc_main.mc", $outfile);
96 $outfile;
103 my $outfile = "dvb-fe-tda10045.fw";
112 copy("$tmpdir/fwtmp", $outfile);
114 $outfile;
121 my $outfile = "dvb-fe-tda10046.fw";
130 copy("$tmpdir/fwtmp", $outfile);
132 $outfile;
139 my $outfile = "dvb-fe-tda10046.fw";
148 copy("$tmpdir/fwtmp", $outfile);
150 $outfile;
157 my $outfile = "dvb-ttpci-01.fw";
163 copy($sourcefile, $outfile);
165 $outfile;
172 my $outfile = "dvb-ttusb-dec-2000t.fw";
180 copy("$tmpdir/software/OEM/STB/App/Boot/STB_PC_T.bin", $outfile);
182 $outfile;
189 my $outfile = "dvb-ttusb-dec-2540t.fw";
197 copy("$tmpdir/software/OEM/STB/App/Boot/STB_PC_X.bin", $outfile);
199 $outfile;
206 my $outfile = "dvb-ttusb-dec-3000s.fw";
214 copy("$tmpdir/software/OEM/STB/App/Boot/STB_PC_S.bin", $outfile);
216 $outfile;
262 my $outfile = "dvb-vp7041-2.422.fw";
287 copy("$tmpdir/fwtmp3", $outfile);
289 $outfile;
307 my $outfile = "dvb-dibusb-5.0.0.11.fw";
312 wgetfile($outfile, $url);
313 verify($outfile,$hash);
315 $outfile;
322 my $outfile = "dvb-fe-nxt2002.fw";
330 extract("$tmpdir/SkyNET.sys", 331624, 5908, $outfile);
332 $outfile;
339 my $outfile = "dvb-fe-nxt2004.fw";
347 extract("$tmpdir/3xHybrid.sys", 465304, 9584, $outfile);
349 $outfile;
523 my $outfile = "dvb-usb-bluebird-01.fw";
528 wgetfile($outfile, $url);
529 verify($outfile,$hash);
531 $outfile;
538 my $outfile = "dvb-usb-af9015.fw";
551 open OUTFILE, '>', $outfile;
604 my $outfile = "dvb-usb-lme2510-lg.fw";
610 extract($sourcefile, 4168, 3841, $outfile);
611 verify($outfile, $hasho);
612 $outfile;
618 my $outfile = "dvb-usb-lme2510c-s7395.fw";
624 extract($sourcefile, 37248, 3720, $outfile);
625 verify($outfile, $hasho);
626 $outfile;
632 my $outfile = "dvb-usb-lme2510c-s7395.fw";
638 extract($sourcefile, 4208, 3881, $outfile);
639 verify($outfile, $hasho);
640 $outfile;
882 my ($infile, $offset, $length, $outfile) = @_;
886 open OUTFILE, ">$outfile";
916 my ($infile,$outfile) =@_;
919 open OUTFILE,">$outfile";
/linux-4.4.14/arch/arm/vdso/
H A Dvdsomunge.c94 static const char *outfile; variable
110 if (failed && outfile != NULL) cleanup()
111 unlink(outfile); cleanup()
146 fail("Usage: %s [infile] [outfile]\n", argv[0]); main()
149 outfile = argv[2]; main()
192 outfd = open(outfile, O_RDWR | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR); main()
194 fail("Cannot open %s: %s\n", outfile, strerror(errno)); main()
197 fail("Cannot truncate %s: %s\n", outfile, strerror(errno)); main()
202 fail("Failed to map %s: %s\n", outfile, strerror(errno)); main()
217 fail("Failed to sync %s: %s\n", outfile, strerror(errno)); main()
/linux-4.4.14/tools/perf/util/
H A Dtrace-event-scripting.c70 const char *outfile python_generate_script_unsupported()
135 const char *outfile __maybe_unused) perl_generate_script_unsupported()
H A Dtrace-event.h78 int (*generate_script) (struct pevent *pevent, const char *outfile);
/linux-4.4.14/arch/cris/include/arch-v32/arch/hwregs/asm/
H A Dirq_nmi_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/irq_nmi_defs_asm.h ../../mod/irq_nmi.r
H A Dstrcop_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/strcop_defs_asm.h ../../inst/strcop/rtl/strcop_regs.r
H A Dstrmux_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/strmux_defs_asm.h ../../inst/strmux/rtl/guinness/strmux_regs.r
H A Dconfig_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/config_defs_asm.h ../../rtl/config_regs.r
H A Dcris_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/cris_defs_asm.h ../../inst/crisp/doc/cris.r
H A Drt_trace_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/rt_trace_defs_asm.h ../../inst/rt_trace/rtl/rt_regs.r
H A Data_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/ata_defs_asm.h ../../inst/ata/rtl/ata_regs.r
H A Dbif_slave_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/bif_slave_defs_asm.h ../../inst/bif/rtl/bif_slave_regs.r
H A Dmmu_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/mmu_defs_asm.h ../../inst/mmu/doc/mmu_regs.r
H A Dtimer_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/timer_defs_asm.h ../../inst/timer/rtl/timer_regs.r
H A Dmarb_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/marb_defs_asm.h ../../inst/memarb/rtl/guinness/marb_top.r
317 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/marb_defs_asm.h ../../inst/memarb/rtl/guinness/marb_top.r
H A Dbif_core_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/bif_core_defs_asm.h ../../inst/bif/rtl/bif_core_regs.r
H A Ddma_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/dma_defs_asm.h ../../inst/dma/inst/dma_common/rtl/dma_regdes.r
H A Dgio_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/gio_defs_asm.h ../../inst/gio/rtl/gio_regs.r
H A Dintr_vect_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/intr_vect_defs_asm.h ../../inst/intr_vect/rtl/guinness/ivmask.config.r
H A Dser_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/ser_defs_asm.h ../../inst/ser/rtl/ser_regs.r
H A Dbif_dma_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/bif_dma_defs_asm.h ../../inst/bif/rtl/bif_dma_regs.r
H A Deth_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/eth_defs_asm.h ../../inst/eth/rtl/eth_regs.r
H A Dsser_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/sser_defs_asm.h ../../inst/syncser/rtl/sser_regs.r
/linux-4.4.14/arch/cris/include/arch-v32/arch/hwregs/iop/asm/
H A Diop_version_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/iop_version_defs_asm.h ../../inst/io_proc/rtl/guinness/iop_version.r
H A Diop_scrc_out_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/iop_scrc_out_defs_asm.h ../../inst/io_proc/rtl/iop_scrc_out.r
H A Diop_fifo_in_extra_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/iop_fifo_in_extra_defs_asm.h ../../inst/io_proc/rtl/iop_fifo_in_extra.r
H A Diop_fifo_out_extra_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/iop_fifo_out_extra_defs_asm.h ../../inst/io_proc/rtl/iop_fifo_out_extra.r
H A Diop_scrc_in_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/iop_scrc_in_defs_asm.h ../../inst/io_proc/rtl/iop_scrc_in.r
H A Diop_trigger_grp_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/iop_trigger_grp_defs_asm.h ../../inst/io_proc/rtl/iop_trigger_grp.r
H A Diop_crc_par_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/iop_crc_par_defs_asm.h ../../inst/io_proc/rtl/iop_crc_par.r
H A Diop_fifo_in_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/iop_fifo_in_defs_asm.h ../../inst/io_proc/rtl/iop_fifo_in.r
H A Diop_mpu_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/iop_mpu_defs_asm.h ../../inst/io_proc/rtl/iop_mpu.r
H A Diop_sap_in_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/iop_sap_in_defs_asm.h ../../inst/io_proc/rtl/iop_sap_in.r
H A Diop_timer_grp_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/iop_timer_grp_defs_asm.h ../../inst/io_proc/rtl/iop_timer_grp.r
H A Diop_dmc_in_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/iop_dmc_in_defs_asm.h ../../inst/io_proc/rtl/iop_dmc_in.r
H A Diop_dmc_out_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/iop_dmc_out_defs_asm.h ../../inst/io_proc/rtl/iop_dmc_out.r
H A Diop_fifo_out_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/iop_fifo_out_defs_asm.h ../../inst/io_proc/rtl/iop_fifo_out.r
H A Diop_sap_out_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/iop_sap_out_defs_asm.h ../../inst/io_proc/rtl/iop_sap_out.r
H A Diop_spu_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/iop_spu_defs_asm.h ../../inst/io_proc/rtl/iop_spu.r
H A Diop_sw_spu_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/iop_sw_spu_defs_asm.h ../../inst/io_proc/rtl/guinness/iop_sw_spu.r
H A Diop_sw_cfg_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/iop_sw_cfg_defs_asm.h ../../inst/io_proc/rtl/guinness/iop_sw_cfg.r
H A Diop_sw_cpu_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/iop_sw_cpu_defs_asm.h ../../inst/io_proc/rtl/guinness/iop_sw_cpu.r
H A Diop_sw_mpu_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/iop_sw_mpu_defs_asm.h ../../inst/io_proc/rtl/guinness/iop_sw_mpu.r
/linux-4.4.14/arch/cris/include/arch-v32/mach-a3/mach/hwregs/iop/asm/
H A Diop_version_defs_asm.h8 * by ../../../tools/rdesc/bin/rdes2c -asm -outfile iop_version_defs_asm.h iop_version.r
H A Diop_sap_in_defs_asm.h8 * by ../../../tools/rdesc/bin/rdes2c -asm -outfile iop_sap_in_defs_asm.h iop_sap_in.r
H A Diop_sap_out_defs_asm.h8 * by ../../../tools/rdesc/bin/rdes2c -asm -outfile iop_sap_out_defs_asm.h iop_sap_out.r
H A Diop_sw_spu_defs_asm.h8 * by ../../../tools/rdesc/bin/rdes2c -asm -outfile iop_sw_spu_defs_asm.h iop_sw_spu.r
H A Diop_sw_cfg_defs_asm.h8 * by ../../../tools/rdesc/bin/rdes2c -asm -outfile iop_sw_cfg_defs_asm.h iop_sw_cfg.r
H A Diop_sw_cpu_defs_asm.h8 * by ../../../tools/rdesc/bin/rdes2c -asm -outfile iop_sw_cpu_defs_asm.h iop_sw_cpu.r
H A Diop_sw_mpu_defs_asm.h8 * by ../../../tools/rdesc/bin/rdes2c -asm -outfile iop_sw_mpu_defs_asm.h iop_sw_mpu.r
/linux-4.4.14/arch/cris/include/arch-v32/mach-a3/mach/hwregs/iop/
H A Diop_version_defs.h8 * by ../../../tools/rdesc/bin/rdes2c -outfile iop_version_defs.h iop_version.r
H A Diop_sap_in_defs.h8 * by ../../../tools/rdesc/bin/rdes2c -outfile iop_sap_in_defs.h iop_sap_in.r
H A Diop_sap_out_defs.h8 * by ../../../tools/rdesc/bin/rdes2c -outfile iop_sap_out_defs.h iop_sap_out.r
H A Diop_sw_spu_defs.h8 * by ../../../tools/rdesc/bin/rdes2c -outfile iop_sw_spu_defs.h iop_sw_spu.r
H A Diop_sw_cfg_defs.h8 * by ../../../tools/rdesc/bin/rdes2c -outfile iop_sw_cfg_defs.h iop_sw_cfg.r
H A Diop_sw_cpu_defs.h8 * by ../../../tools/rdesc/bin/rdes2c -outfile iop_sw_cpu_defs.h iop_sw_cpu.r
H A Diop_sw_mpu_defs.h8 * by ../../../tools/rdesc/bin/rdes2c -outfile iop_sw_mpu_defs.h iop_sw_mpu.r
/linux-4.4.14/arch/cris/include/arch-v32/mach-a3/mach/hwregs/
H A Dreg_map.h8 * by ../../../tools/rdesc/bin/rdes2c -base 0xb0000000 -map marb_bar.r marb_foo.r ccd_top.r ccd_stat.r ccd_tg.r ccd_dp.r ccd.r iop_sap_in.r iop_sap_out.r iop_sw_cfg.r iop_sw_cpu.r iop_sw_mpu.r iop_sw_spu.r iop_version.r iop_crc_par.r iop_dmc_in.r iop_dmc_out.r iop_fifo_in_extra.r iop_fifo_in.r iop_fifo_out_extra.r iop_fifo_out.r iop_mc.r iop_mpu.r iop_scrc_in.r iop_scrc_out.r iop_spu.r iop_timer_grp.r iop_trigger_grp.r iop.r -outfile reg_map.h reg.rmap
H A Dstrmux_defs.h8 * by ../../../tools/rdesc/bin/rdes2c -outfile strmux_defs.h strmux.r
H A Dclkgen_defs.h8 * by ../../../tools/rdesc/bin/rdes2c -outfile clkgen_defs.h clkgen.r
H A Dl2cache_defs.h8 * by ../../../tools/rdesc/bin/rdes2c -outfile l2cache_defs.h l2cache.r
H A Dmarb_bar_defs.h8 * by ../../../tools/rdesc/bin/rdes2c -outfile marb_bar_defs.h marb_bar.r
292 * by ../../../tools/rdesc/bin/rdes2c -outfile marb_bar_defs.h marb_bar.r
H A Dmarb_foo_defs.h8 * by ../../../tools/rdesc/bin/rdes2c -outfile marb_foo_defs.h marb_foo.r
418 * by ../../../tools/rdesc/bin/rdes2c -outfile marb_foo_defs.h marb_foo.r
H A Dddr2_defs.h8 * by ../../../tools/rdesc/bin/rdes2c -outfile ddr2_defs.h ddr2.r
H A Dintr_vect_defs.h8 * by ../../../tools/rdesc/bin/rdes2c -outfile intr_vect_defs.h intr_vect.r
H A Dpinmux_defs.h8 * by ../../../tools/rdesc/bin/rdes2c -outfile pinmux_defs.h pinmux.r
H A Dpio_defs.h8 * by ../../../tools/rdesc/bin/rdes2c -outfile pio_defs.h pio.r
H A Dtimer_defs.h8 * by ../../../tools/rdesc/bin/rdes2c -outfile timer_defs.h timer.r
H A Dgio_defs.h8 * by ../../../tools/rdesc/bin/rdes2c -outfile gio_defs.h gio.r
/linux-4.4.14/arch/mips/boot/
H A Delf2ecoff.c276 int infile, outfile; main() local
505 if ((outfile = open(argv[2], O_WRONLY | O_CREAT, 0777)) < 0) { main()
514 i = write(outfile, &efh, sizeof efh); main()
530 i = write(outfile, &eah, sizeof eah); main()
539 i = write(outfile, &esecs, nosecs * sizeof(struct scnhdr)); main()
549 i = write(outfile, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0", pad); main()
582 write(outfile, obuf, main()
597 copy(outfile, infile, ph[i].p_offset, main()
611 if (write(outfile, obuf, sizeof(obuf)) != sizeof(obuf)) { main()
/linux-4.4.14/arch/cris/include/arch-v32/arch/hwregs/iop/
H A Diop_version_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile iop_version_defs.h ../../inst/io_proc/rtl/guinness/iop_version.r
H A Diop_fifo_in_extra_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile iop_fifo_in_extra_defs.h ../../inst/io_proc/rtl/iop_fifo_in_extra.r
H A Diop_fifo_out_extra_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile iop_fifo_out_extra_defs.h ../../inst/io_proc/rtl/iop_fifo_out_extra.r
H A Diop_scrc_in_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile iop_scrc_in_defs.h ../../inst/io_proc/rtl/iop_scrc_in.r
H A Diop_scrc_out_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile iop_scrc_out_defs.h ../../inst/io_proc/rtl/iop_scrc_out.r
H A Diop_trigger_grp_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile iop_trigger_grp_defs.h ../../inst/io_proc/rtl/iop_trigger_grp.r
H A Diop_crc_par_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile iop_crc_par_defs.h ../../inst/io_proc/rtl/iop_crc_par.r
H A Diop_fifo_in_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile iop_fifo_in_defs.h ../../inst/io_proc/rtl/iop_fifo_in.r
H A Diop_mpu_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile iop_mpu_defs.h ../../inst/io_proc/rtl/iop_mpu.r
H A Diop_sap_in_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile iop_sap_in_defs.h ../../inst/io_proc/rtl/iop_sap_in.r
H A Diop_timer_grp_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile iop_timer_grp_defs.h ../../inst/io_proc/rtl/iop_timer_grp.r
H A Diop_dmc_in_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile iop_dmc_in_defs.h ../../inst/io_proc/rtl/iop_dmc_in.r
H A Diop_dmc_out_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile iop_dmc_out_defs.h ../../inst/io_proc/rtl/iop_dmc_out.r
H A Diop_fifo_out_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile iop_fifo_out_defs.h ../../inst/io_proc/rtl/iop_fifo_out.r
H A Diop_sap_out_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile iop_sap_out_defs.h ../../inst/io_proc/rtl/iop_sap_out.r
H A Diop_spu_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile iop_spu_defs.h ../../inst/io_proc/rtl/iop_spu.r
H A Diop_sw_spu_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile iop_sw_spu_defs.h ../../inst/io_proc/rtl/guinness/iop_sw_spu.r
H A Diop_sw_cfg_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile iop_sw_cfg_defs.h ../../inst/io_proc/rtl/guinness/iop_sw_cfg.r
H A Diop_sw_cpu_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile iop_sw_cpu_defs.h ../../inst/io_proc/rtl/guinness/iop_sw_cpu.r
H A Diop_sw_mpu_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile iop_sw_mpu_defs.h ../../inst/io_proc/rtl/guinness/iop_sw_mpu.r
/linux-4.4.14/arch/cris/include/arch-v32/arch/hwregs/
H A Dirq_nmi_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile irq_nmi_defs.h ../../mod/irq_nmi.r
H A Dstrcop_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile strcop_defs.h ../../inst/strcop/rtl/strcop_regs.r
H A Dconfig_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile config_defs.h ../../rtl/config_regs.r
H A Drt_trace_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile rt_trace_defs.h ../../inst/rt_trace/rtl/rt_regs.r
H A Data_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile ata_defs.h ../../inst/ata/rtl/ata_regs.r
H A Dbif_slave_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile bif_slave_defs.h ../../inst/bif/rtl/bif_slave_regs.r
H A Dmarb_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile marb_defs.h ../../inst/memarb/rtl/guinness/marb_top.r
269 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile marb_defs.h ../../inst/memarb/rtl/guinness/marb_top.r
H A DMakefile130 $(RDES2C) -base 0xb0000000 -asm -outfile $@ $^
H A Dbif_core_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile bif_core_defs.h ../../inst/bif/rtl/bif_core_regs.r
H A Dextmem_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile extmem_defs.h ../../inst/ext_mem/mod/extmem_regs.r
H A Dser_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile ser_defs.h ../../inst/ser/rtl/ser_regs.r
H A Dsser_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile sser_defs.h ../../inst/syncser/rtl/sser_regs.r
H A Dbif_dma_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile bif_dma_defs.h ../../inst/bif/rtl/bif_dma_regs.r
H A Ddma_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile dma_defs.h ../../inst/dma/inst/dma_common/rtl/dma_regdes.r
/linux-4.4.14/arch/cris/include/arch-v32/mach-a3/mach/hwregs/asm/
H A Dreg_map_asm.h8 * by ../../../tools/rdesc/bin/rdes2c -asm -base 0xb0000000 -map marb_bar.r marb_foo.r ccd_top.r ccd_stat.r ccd_tg.r ccd_dp.r ccd.r iop_sap_in.r iop_sap_out.r iop_sw_cfg.r iop_sw_cpu.r iop_sw_mpu.r iop_sw_spu.r iop_version.r iop_crc_par.r iop_dmc_in.r iop_dmc_out.r iop_fifo_in_extra.r iop_fifo_in.r iop_fifo_out_extra.r iop_fifo_out.r iop_mc.r iop_mpu.r iop_scrc_in.r iop_scrc_out.r iop_spu.r iop_timer_grp.r iop_trigger_grp.r iop.r -outfile reg_map_asm.h reg.rmap
H A Dclkgen_defs_asm.h8 * by ../../../tools/rdesc/bin/rdes2c -asm -outfile clkgen_defs_asm.h clkgen.r
H A Dtimer_defs_asm.h8 * by ../../../tools/rdesc/bin/rdes2c -asm -outfile timer_defs_asm.h timer.r
H A Dddr2_defs_asm.h8 * by ../../../tools/rdesc/bin/rdes2c -asm -outfile ddr2_defs_asm.h ddr2.r
H A Dpio_defs_asm.h8 * by ../../../tools/rdesc/bin/rdes2c -asm -outfile pio_defs_asm.h pio.r
H A Dpinmux_defs_asm.h8 * by ../../../tools/rdesc/bin/rdes2c -asm -outfile pinmux_defs_asm.h pinmux.r
H A Dgio_defs_asm.h8 * by ../../../tools/rdesc/bin/rdes2c -asm -outfile gio_defs_asm.h gio.r
/linux-4.4.14/arch/cris/include/arch-v32/mach-fs/mach/hwregs/asm/
H A Dreg_map_asm.h16 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/reg_map_asm.h -base 0xb0000000 ../../rtl/global.rmap ../../mod/modreg.rmap ../../inst/memarb/rtl/guinness/marb_top.r ../../mod/fakereg.rmap
H A Dconfig_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/config_defs_asm.h ../../rtl/config_regs.r
H A Dtimer_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/timer_defs_asm.h ../../inst/timer/rtl/timer_regs.r
H A Dbif_core_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/bif_core_defs_asm.h ../../inst/bif/rtl/bif_core_regs.r
H A Dgio_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/gio_defs_asm.h ../../inst/gio/rtl/gio_regs.r
H A Dpinmux_defs_asm.h10 * by /n/asic/design/tools/rdesc/src/rdes2c -asm --outfile asm/pinmux_defs_asm.h ../../inst/pinmux/rtl/guinness/pinmux_regs.r
/linux-4.4.14/arch/cris/include/arch-v32/mach-fs/mach/hwregs/
H A Dconfig_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile config_defs.h ../../rtl/config_regs.r
H A Dstrmux_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile strmux_defs.h ../../inst/strmux/rtl/guinness/strmux_regs.r
H A Dbif_slave_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile bif_slave_defs.h ../../inst/bif/rtl/bif_slave_regs.r
H A Dintr_vect_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile intr_vect_defs.h ../../inst/intr_vect/rtl/guinness/ivmask.config.r
H A Dmarb_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile marb_defs.h ../../inst/memarb/rtl/guinness/marb_top.r
269 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile marb_defs.h ../../inst/memarb/rtl/guinness/marb_top.r
H A Dbif_core_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile bif_core_defs.h ../../inst/bif/rtl/bif_core_regs.r
H A Dgio_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile gio_defs.h ../../inst/gio/rtl/gio_regs.r
H A Dpinmux_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile pinmux_defs.h ../../inst/pinmux/rtl/guinness/pinmux_regs.r
H A Dtimer_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile timer_defs.h ../../inst/timer/rtl/timer_regs.r
H A Dbif_dma_defs.h10 * by /n/asic/design/tools/rdesc/src/rdes2c --outfile bif_dma_defs.h ../../inst/bif/rtl/bif_dma_regs.r
/linux-4.4.14/tools/perf/util/scripting-engines/
H A Dtrace-event-perl.c445 static int perl_generate_script(struct pevent *pevent, const char *outfile) perl_generate_script() argument
453 sprintf(fname, "%s.pl", outfile); perl_generate_script()
H A Dtrace-event-python.c1036 static int python_generate_script(struct pevent *pevent, const char *outfile) python_generate_script() argument
1044 sprintf(fname, "%s.py", outfile); python_generate_script()
/linux-4.4.14/Documentation/video4linux/
H A Dextract_xc3028.pl148 my $outfile = shift;
157 open OUTFILE, ">$outfile";
914 my $outfile = shift;
923 open OUTFILE, ">$outfile";
/linux-4.4.14/fs/jffs2/
H A Dwbuf.c879 goto outfile; jffs2_flash_writev()
918 outfile: jffs2_flash_writev()
/linux-4.4.14/tools/perf/
H A Dbuiltin-script.c664 const char *outfile __maybe_unused) default_generate_script()
/linux-4.4.14/scripts/
H A Danalyze_suspend.py230 outfile = '' variable in class:Data
2124 html += tdlink.format(data.outfile)
3365 data.outfile = link

Completed in 1649 milliseconds