Lines Matching defs:out
28 static FILE *out;
232 out = fopen(outputname, "w");
233 if (!out)
236 out = stdout;
239 fputs("/*\n", out);
240 fputs(" * DO NOT EDIT THIS FILE!\n", out);
241 fputs(" *\n", out);
242 fprintf(out, " * It was automatically generated from %s\n", filename);
243 fputs(" *\n", out);
244 fprintf(out, " * Linux logo %s\n", logoname);
245 fputs(" */\n\n", out);
246 fputs("#include <linux/linux_logo.h>\n\n", out);
247 fprintf(out, "static unsigned char %s_data[] __initdata = {\n",
253 fputs("\n};\n\n", out);
254 fprintf(out, "const struct linux_logo %s __initconst = {\n", logoname);
255 fprintf(out, "\t.type\t\t= %s,\n", logo_types[logo_type]);
256 fprintf(out, "\t.width\t\t= %d,\n", logo_width);
257 fprintf(out, "\t.height\t\t= %d,\n", logo_height);
259 fprintf(out, "\t.clutsize\t= %d,\n", logo_clutsize);
260 fprintf(out, "\t.clut\t\t= %s_clut,\n", logoname);
262 fprintf(out, "\t.data\t\t= %s_data\n", logoname);
263 fputs("};\n\n", out);
267 fclose(out);
275 fprintf(out, ", 0x%02x", byte);
277 fprintf(out, ",\n\t0x%02x", byte);
279 fprintf(out, "\t0x%02x", byte);
381 fputs("\n};\n\n", out);
384 fprintf(out, "static unsigned char %s_clut[] __initdata = {\n",