| /xsrc/external/mit/MesaLib/dist/src/util/ |
| H A D | xxd.py | 56 with io.open(args.output, "wb") as outfile: 65 outfile.write("static const char {}[] = {{\n".format(name).encode('utf-8')) 76 emit_byte(outfile, byte) 79 outfile.write(b"\n ") 82 outfile.write(b"\n0") 83 outfile.write(b"\n};\n\n")
|
| /xsrc/external/mit/brotli/dist/python/ |
| H A D | bro.py | 68 dest='outfile', 134 if options.outfile: 135 if os.path.isfile(options.outfile) and not options.force: 137 outfile = open(options.outfile, 'wb') 139 outfile = get_binary_stdio('stdout') 155 outfile.write(data) 156 outfile.close()
|
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/ |
| H A D | xxd.py | 77 with io.open(args.output, "wb") as outfile: 86 outfile.write("static const char {}[] =\n \"".format(name).encode('utf-8')) 93 emit_byte(outfile, byte) 95 outfile.write(b"\"\n ;\n")
|
| /xsrc/external/mit/xorg-server/dist/hw/xwin/glx/ |
| H A D | Makefile.am | 48 $(AM_V_GEN)PYTHONPATH=$(KHRONOS_SPEC_DIR) $(PYTHON3) $(srcdir)/gen_gl_wrappers.py -registry $(KHRONOS_SPEC_DIR)/wgl.xml -prefix wgl -wrapper -preresolve $(GENGLWRAPPERSOPTS) -outfile $@ 51 $(AM_V_GEN)PYTHONPATH=$(KHRONOS_SPEC_DIR) $(PYTHON3) $(srcdir)/gen_gl_wrappers.py -registry $(KHRONOS_SPEC_DIR)/gl.xml -shim $(GENGLWRAPPERSOPTS) -outfile $@ 54 $(AM_V_GEN)PYTHONPATH=$(KHRONOS_SPEC_DIR) $(PYTHON3) $(srcdir)/gen_gl_wrappers.py -registry $(KHRONOS_SPEC_DIR)/gl.xml -thunk $(GENGLWRAPPERSOPTS) -outfile $@ 57 $(AM_V_GEN)PYTHONPATH=$(KHRONOS_SPEC_DIR) $(PYTHON3) $(srcdir)/gen_gl_wrappers.py -registry $(KHRONOS_SPEC_DIR)/gl.xml -thunkdefs $(GENGLWRAPPERSOPTS) -outfile $@
|
| H A D | Makefile.in | 951 @XWIN_GLX_WINDOWS_TRUE@ $(AM_V_GEN)PYTHONPATH=$(KHRONOS_SPEC_DIR) $(PYTHON3) $(srcdir)/gen_gl_wrappers.py -registry $(KHRONOS_SPEC_DIR)/wgl.xml -prefix wgl -wrapper -preresolve $(GENGLWRAPPERSOPTS) -outfile $@ 954 @XWIN_GLX_WINDOWS_TRUE@ $(AM_V_GEN)PYTHONPATH=$(KHRONOS_SPEC_DIR) $(PYTHON3) $(srcdir)/gen_gl_wrappers.py -registry $(KHRONOS_SPEC_DIR)/gl.xml -shim $(GENGLWRAPPERSOPTS) -outfile $@ 957 @XWIN_GLX_WINDOWS_TRUE@ $(AM_V_GEN)PYTHONPATH=$(KHRONOS_SPEC_DIR) $(PYTHON3) $(srcdir)/gen_gl_wrappers.py -registry $(KHRONOS_SPEC_DIR)/gl.xml -thunk $(GENGLWRAPPERSOPTS) -outfile $@ 960 @XWIN_GLX_WINDOWS_TRUE@ $(AM_V_GEN)PYTHONPATH=$(KHRONOS_SPEC_DIR) $(PYTHON3) $(srcdir)/gen_gl_wrappers.py -registry $(KHRONOS_SPEC_DIR)/gl.xml -thunkdefs $(GENGLWRAPPERSOPTS) -outfile $@
|
| /xsrc/external/mit/MesaLib.old/dist/src/intel/tools/ |
| H A D | aubinator.c | 66 FILE *outfile; variable in typeref:typename:FILE * 95 gen_batch_decode_ctx_init(&batch_ctx, &devinfo, outfile, batch_flags, 115 fprintf(outfile, "%sAubinator: Intel AUB file decoder.%-80s%s\n", 119 fprintf(outfile, "File name: %s\n", input_file); 122 fprintf(outfile, "PCI ID: 0x%x\n", aub_pci_id); 124 fprintf(outfile, "Application name: %s\n", app_name); 126 fprintf(outfile, "Decoding as: %s\n", gen_get_device_name(pci_id)); 129 fprintf(outfile, "\n"); 306 outfile = stdout;
|
| /xsrc/external/mit/MesaLib/dist/src/intel/tools/ |
| H A D | aubinator.c | 65 FILE *outfile; variable in typeref:typename:FILE * 94 intel_batch_decode_ctx_init(&batch_ctx, &devinfo, outfile, batch_flags, 114 fprintf(outfile, "%sAubinator: Intel AUB file decoder.%-80s%s\n", 118 fprintf(outfile, "File name: %s\n", input_file); 121 fprintf(outfile, "PCI ID: 0x%x\n", aub_pci_id); 123 fprintf(outfile, "Application name: %s\n", app_name); 125 fprintf(outfile, "Decoding as: %s\n", devinfo.name); 128 fprintf(outfile, "\n"); 305 outfile = stdout;
|
| /xsrc/external/mit/xkeyboard-config/dist/tests/ |
| H A D | xkbTestFunc.pm | 41 my $outfile = ".test.out.xkb"; 47 "-print | xkbcomp - -xkb $outfile" ) == 0 ) or die "Could not set xkb configuration"; 48 unlink($outfile);
|
| /xsrc/external/mit/MesaLib.old/dist/src/util/xmlpool/ |
| H A D | gen_xmlpool.py | 114 def expandMatches(matches, translations, outfile, end=None): 131 outfile.write(text + '\n') 139 outfile.write(text + '\n') 143 outfile.write(end)
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/etnaviv/ |
| H A D | etnaviv_compiler.h | 78 struct etna_shader_io_file outfile; member in struct:etna_shader_variant
|
| H A D | etnaviv_compiler.c | 2098 sobj->outfile.num_reg = 0; 2157 for (int idx = 0; idx < sobj->outfile.num_reg; ++idx) { 2158 sobj->output_per_semantic[sobj->outfile.reg[idx].semantic.Name] 2159 [sobj->outfile.reg[idx].semantic.Index] = 2160 &sobj->outfile.reg[idx]; 2168 struct etna_shader_io_file *sf = &sobj->outfile; 2506 for (int idx = 0; idx < shader->outfile.num_reg; ++idx) { 2507 printf(" [%i] name=%s index=%i comps=%i\n", shader->outfile.reg[idx].reg, 2508 tgsi_semantic_names[shader->outfile.reg[idx].semantic.Name], 2509 shader->outfile [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/etnaviv/ |
| H A D | etnaviv_compiler.h | 113 struct etna_shader_io_file outfile; member in struct:etna_shader_variant
|
| H A D | etnaviv_shader.c | 91 for (int idx = 0; idx < shader->outfile.num_reg; ++idx) { 92 printf(" [%i] name=%s comps=%i\n", shader->outfile.reg[idx].reg, 94 gl_varying_slot_name_for_stage(shader->outfile.reg[idx].slot, shader->stage) : 95 gl_frag_result_name(shader->outfile.reg[idx].slot), 96 shader->outfile.reg[idx].num_components);
|
| H A D | etnaviv_compiler_nir.c | 101 struct etna_shader_io_file *sf = &c->variant->outfile; 1038 * v->outfile.num_reg only counts varyings, +1 to compensate for the position output 1042 int half_out = v->outfile.num_reg / 2 + 1; 1218 for (int i = 0; i < sobj->outfile.num_reg; i++) 1219 if (sobj->outfile.reg[i].slot == in->slot) 1220 return &sobj->outfile.reg[i];
|
| H A D | etnaviv_compiler_tgsi.c | 2166 sobj->outfile.num_reg = 0; 2212 struct etna_shader_io_file *sf = &sobj->outfile; 2525 for (int i = 0; i < sobj->outfile.num_reg; i++) 2526 if (sobj->outfile.reg[i].slot == in->slot) 2527 return &sobj->outfile.reg[i];
|
| /xsrc/external/mit/MesaLib/dist/src/amd/compiler/tests/ |
| H A D | glsl_scraper.py | 297 p.add_argument('-o', '--outfile', default='-', 310 outfname = args.outfile 320 with open_file(outfname, 'w') as outfile: 321 outfile.write(dedent("""\ 339 shader.dump_c_code(outfile)
|
| /xsrc/external/mit/MesaLib/dist/src/freedreno/afuc/ |
| H A D | asm.c | 370 char *file, *outfile; local in function:main 390 outfile = argv[optind + 1]; 392 outfd = open(outfile, O_WRONLY | O_CREAT | O_TRUNC, 0644); 394 fprintf(stderr, "could not open \"%s\"\n", outfile);
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/swr/rasterizer/codegen/ |
| H A D | gen_common.py | 194 with open(output_filename, 'w') as outfile: 195 print(MakoTemplateWriter.to_string(template_filename, **kwargs), file=outfile)
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/swr/rasterizer/codegen/ |
| H A D | gen_common.py | 193 with open(output_filename, 'w') as outfile: 194 print(MakoTemplateWriter.to_string(template_filename, **kwargs), file=outfile)
|
| /xsrc/external/mit/MesaLib.old/dist/src/intel/common/ |
| H A D | gen_decoder.c | 1106 print_dword_header(FILE *outfile, argument 1110 fprintf(outfile, "0x%08"PRIx64": 0x%08x : Dword %d\n", 1129 gen_print_group(FILE *outfile, struct gen_group *group, uint64_t offset, argument 1140 print_dword_header(outfile, &iter, offset, i); 1144 fprintf(outfile, " %s: %s\n", iter.name, iter.value); 1148 gen_print_group(outfile, iter.struct_desc, struct_offset,
|
| /xsrc/external/mit/MesaLib/dist/src/intel/common/ |
| H A D | intel_decoder.c | 1188 print_dword_header(FILE *outfile, argument 1192 fprintf(outfile, "0x%08"PRIx64": 0x%08x : Dword %d\n", 1213 intel_print_group(FILE *outfile, struct intel_group *group, uint64_t offset, argument 1224 print_dword_header(outfile, &iter, offset, i); 1228 fprintf(outfile, " %s: %s\n", iter.name, iter.value); 1232 intel_print_group(outfile, iter.struct_desc, struct_offset,
|
| /xsrc/external/mit/MesaLib/dist/docs/ |
| H A D | codingstyle.rst | 35 indent -br -i3 -npcs --no-tabs infile.c -o outfile.c
|
| /xsrc/external/mit/MesaLib/dist/src/panfrost/bifrost/valhall/ |
| H A D | asm.py | 388 parser.add_argument('outfile', type=argparse.FileType('wb')) 395 args.outfile.write(packed)
|
| /xsrc/external/mit/ctwm/dist/cmake_files/ |
| H A D | find_asciidoc_bits.cmake | 237 # try. The result is that it always puts the outfile file next to
|
| /xsrc/external/mit/fontconfig/dist/m4/ |
| H A D | po.m4 | 98 # Support "outfile[:infile[:infile...]]"
|