Lines Matching defs:output
53 " -o, --output specify output file\n"
58 " i965_asm -g kbl input.asm -t hex -o output\n",
71 print_instruction(FILE *output, bool compact, const brw_inst *instruction)
79 fprintf(output, "%02x", ((unsigned char *)instruction)[0]);
82 fprintf(output, " %02x", ((unsigned char *)instruction)[i]);
87 fprintf(output, "\t0x%08x,", get_dword(instruction, 0));
90 fprintf(output, " 0x%08x,", get_dword(instruction, i));
95 fwrite(instruction, 1, byte_limit, output);
100 fprintf(output, "\n");
211 FILE *output = stdout;
227 { "output", required_argument, NULL, 'o' },
298 output = fopen(output_file, "w");
299 if (!output) {
300 fprintf(stderr, "Couldn't open output file\n");
335 fprintf(output, "{\n");
356 print_instruction(output, compacted, insn);
362 fprintf(output, "}");
374 if (output)
375 fclose(output);