Home
last modified time | relevance | path

Searched refs:outf (Results 1 – 13 of 13) sorted by relevance

/openbmc/qemu/linux-user/
H A Dgen-vdso.c29 static void output_reloc(FILE *outf, void *buf, void *loc) in output_reloc() argument
31 fprintf(outf, " 0x%08tx,\n", loc - buf); in output_reloc()
59 FILE *inf = NULL, *outf = NULL; in main() local
106 outf = fopen(outf_name, "w"); in main()
107 if (outf == NULL) { in main()
177 fprintf(outf, in main()
184 elf32_process(outf, buf, total_len, need_bswap); in main()
187 elf64_process(outf, buf, total_len, need_bswap); in main()
195 fprintf(outf, "};\n\n"); /* end vdso_relocs. */ in main()
200 fprintf(outf, in main()
[all …]
H A Dgen-vdso-elfn.c.inc109 static void elfN(process)(FILE *outf, void *buf, long len, bool need_bswap)
220 output_reloc(outf, buf, &phdr[i].p_vaddr);
221 output_reloc(outf, buf, &phdr[i].p_paddr);
226 output_reloc(outf, buf, &shdr[i].sh_addr);
252 output_reloc(outf, buf, &target_dyn->d_un.d_val);
334 output_reloc(outf, buf, &target_sym[i].st_value);
/openbmc/openbmc/poky/meta/recipes-kernel/perf/perf/
H A Dsort-pmuevents.py88 outf = open( outfile, 'w' ) variable
91 outf.write( preamble.group(1) )
93outf.write( "%s %s %s[] = {\n" % (entry_dict_sorted[d]['type_prefix'], entry_dict_sorted[d]['type'…
95 outf.write( entry_dict_sorted[d]['fields'][f] + '\n' )
97 outf.write( "};\n" )
99 outf.close()
/openbmc/u-boot/scripts/dtc/
H A Ddtc.c176 FILE *outf = NULL; in main() local
343 outf = stdout; in main()
345 outf = fopen(outname, "wb"); in main()
346 if (! outf) in main()
352 dt_to_source(outf, dti); in main()
354 dt_to_blob(outf, dti, outversion); in main()
356 dt_to_asm(outf, dti, outversion); in main()
/openbmc/phosphor-pid-control/pid/ec/
H A Dlogging.cpp168 std::ofstream outf; in LogInit() local
178 outf.open(filef); in LogInit()
179 if (!(outf.good())) in LogInit()
182 outf.close(); in LogInit()
195 newLog.fileCoeffs = std::move(outf); in LogInit()
/openbmc/u-boot/tools/
H A Dproftool.c61 static void outf(int level, const char *fmt, ...)
63 #define error(fmt, b...) outf(0, fmt, ##b)
64 #define warn(fmt, b...) outf(1, fmt, ##b)
65 #define notice(fmt, b...) outf(2, fmt, ##b)
66 #define info(fmt, b...) outf(3, fmt, ##b)
67 #define debug(fmt, b...) outf(4, fmt, ##b)
70 static void outf(int level, const char *fmt, ...) in outf() function
/openbmc/qemu/tests/tcg/i386/
H A Dtest-mmx.py225 with open(sys.argv[2], "w") as outf:
226 outf.write("// Generated by test-mmx.py. Do not edit.\n")
236 outf.write('TEST(%d, "%s", %s)\n' % (n, insn, g.optype))
240 outf.write("#undef TEST\n")
H A Dtest-avx.py357 with open(sys.argv[2], "w") as outf:
358 outf.write("// Generated by test-avx.py. Do not edit.\n")
368 outf.write('TEST(%d, "%s", %s)\n' % (n, insn, g.optype))
372 outf.write("#undef TEST\n")
/openbmc/openbmc/poky/scripts/lib/wic/
H A Dengine.py436 def write_sfdisk_script(outf, parts): argument
442 outf.write("{}: {}\n".format(key, val))
443 outf.write("\n")
457 outf.write("{}\n".format(line))
458 outf.flush()
465 with tempfile.NamedTemporaryFile(prefix="wic-sfdisk-", mode='w') as outf:
466 write_sfdisk_script(outf, parts)
467 cmd = "{} --no-reread {} < {} ".format(self.sfdisk, target, outf.name)
/openbmc/openbmc/poky/meta/recipes-core/gettext/
H A Dgettext-minimal-native_0.23.1.bb29 with open(oe.path.join(d.getVar("WORKDIR"),"aclocal-files"),'w') as outf:
30 outf.write(aclocal_files)
/openbmc/openbmc/meta-openembedded/meta-multimedia/recipes-multimedia/cdparanoia/files/
H A D0001-utils-Use-c99-compiler-independent-types.patch24 extern long buffering_write(int outf, char *buffer, long num);
/openbmc/openbmc/poky/bitbake/lib/ply/
H A Dyacc.py2672 outf = open(filename,"wb")
2673 pickle.dump(__tabversion__,outf,pickle_protocol)
2674 pickle.dump(self.lr_method,outf,pickle_protocol)
2675 pickle.dump(signature,outf,pickle_protocol)
2676 pickle.dump(self.lr_action,outf,pickle_protocol)
2677 pickle.dump(self.lr_goto,outf,pickle_protocol)
2685 pickle.dump(outp,outf,pickle_protocol)
2686 outf.close()
/openbmc/openbmc/poky/scripts/lib/devtool/
H A Dstandard.py2210 outf = os.path.join(root, fn)
2211 relf = os.path.relpath(outf, dry_run_outdir)
2219 outf,
2224 comparelist.append((recipefile, outf, recipefile))
2228 comparelist.append((appendfile, outf, appendfile))
2230 comparelist.append((None, outf, appendfile))
2240 comparelist.append((destfp, outf, destfp))