Lines Matching refs:fprintf

14 			fprintf(outfile, "\n\t");  in BITSFUNC()
15 fprintf(outfile, "0x%02X, ", (int)(data)[i]); in BITSFUNC()
38 fprintf(outfile, "static const unsigned char %s[%zu] = {", name, len); in BITSFUNC()
40 fprintf(outfile, "\n};\n\n"); in BITSFUNC()
160 fprintf(outfile, "/* AUTOMATICALLY GENERATED -- DO NOT EDIT */\n\n"); in BITSFUNC()
161 fprintf(outfile, "#include <linux/linkage.h>\n"); in BITSFUNC()
162 fprintf(outfile, "#include <linux/init.h>\n"); in BITSFUNC()
163 fprintf(outfile, "#include <asm/page_types.h>\n"); in BITSFUNC()
164 fprintf(outfile, "#include <asm/vdso.h>\n"); in BITSFUNC()
165 fprintf(outfile, "\n"); in BITSFUNC()
166 fprintf(outfile, in BITSFUNC()
171 fprintf(outfile, "\n\t"); in BITSFUNC()
172 fprintf(outfile, "0x%02X, ", in BITSFUNC()
175 fprintf(outfile, "\n};\n\n"); in BITSFUNC()
180 fprintf(outfile, "const struct vdso_image %s = {\n", image_name); in BITSFUNC()
181 fprintf(outfile, "\t.data = raw_data,\n"); in BITSFUNC()
182 fprintf(outfile, "\t.size = %lu,\n", mapping_size); in BITSFUNC()
184 fprintf(outfile, "\t.alt = %lu,\n", in BITSFUNC()
186 fprintf(outfile, "\t.alt_len = %lu,\n", in BITSFUNC()
190 fprintf(outfile, "\t.extable_base = %lu,\n", in BITSFUNC()
192 fprintf(outfile, "\t.extable_len = %lu,\n", in BITSFUNC()
194 fprintf(outfile, "\t.extable = extable,\n"); in BITSFUNC()
199 fprintf(outfile, "\t.sym_%s = %" PRIi64 ",\n", in BITSFUNC()
202 fprintf(outfile, "};\n\n"); in BITSFUNC()
203 fprintf(outfile, "static __init int init_%s(void) {\n", image_name); in BITSFUNC()
204 fprintf(outfile, "\treturn init_vdso_image(&%s);\n", image_name); in BITSFUNC()
205 fprintf(outfile, "};\n"); in BITSFUNC()
206 fprintf(outfile, "subsys_initcall(init_%s);\n", image_name); in BITSFUNC()