/external/e2fsprogs/lib/et/ |
D | et_c.awk | 3 outfn = outfile 124 print "/*" > outfile 125 print " * " outfn ":" > outfile 126 print " * This file is automatically generated; please do not edit it." > outfile 127 print " */" > outfile 129 print "" > outfile 130 print "#include <stdlib.h>" > outfile 131 print "" > outfile 132 print "static const char * const text[] = {" > outfile 143 # printf "\t\t\"%s,\n", $0 > outfile [all …]
|
D | et_h.awk | 3 outfn = outfile 128 print "/*" > outfile 129 print " * " outfn ":" > outfile 130 print " * This file is automatically generated; please do not edit it." > outfile 131 print " */" > outfile 132 print "" > outfile 133 print "#include <et/com_err.h>" > outfile 134 print "" > outfile 144 curr_sign*curr_low > outfile 147 curr_low > outfile [all …]
|
/external/qemu/distrib/jpeg-6b/ |
D | ckconfig.c | 294 FILE *outfile; local 297 if ((outfile = fopen("jconfig.h", "w")) == NULL) { 303 fprintf(outfile, "/* jconfig.h --- generated by ckconfig.c */\n"); 304 fprintf(outfile, "/* see jconfig.doc for explanations */\n\n"); 306 fprintf(outfile, "#define HAVE_PROTOTYPES\n"); 308 fprintf(outfile, "#undef HAVE_PROTOTYPES\n"); 311 fprintf(outfile, "#define HAVE_UNSIGNED_CHAR\n"); 313 fprintf(outfile, "#undef HAVE_UNSIGNED_CHAR\n"); 316 fprintf(outfile, "#define HAVE_UNSIGNED_SHORT\n"); 318 fprintf(outfile, "#undef HAVE_UNSIGNED_SHORT\n"); [all …]
|
D | wrbmp.c | 297 FILE * outfile = dest->pub.output_file; in write_colormap() local 304 putc(GETJSAMPLE(colormap[2][i]), outfile); in write_colormap() 305 putc(GETJSAMPLE(colormap[1][i]), outfile); in write_colormap() 306 putc(GETJSAMPLE(colormap[0][i]), outfile); in write_colormap() 308 putc(0, outfile); in write_colormap() 313 putc(GETJSAMPLE(colormap[0][i]), outfile); in write_colormap() 314 putc(GETJSAMPLE(colormap[0][i]), outfile); in write_colormap() 315 putc(GETJSAMPLE(colormap[0][i]), outfile); in write_colormap() 317 putc(0, outfile); in write_colormap() 323 putc(i, outfile); in write_colormap() [all …]
|
D | jdatadst.c | 28 FILE * outfile; /* target stream */ member 85 if (JFWRITE(dest->outfile, dest->buffer, OUTPUT_BUF_SIZE) != in empty_output_buffer() 113 if (JFWRITE(dest->outfile, dest->buffer, datacount) != datacount) in term_destination() 116 fflush(dest->outfile); in term_destination() 118 if (ferror(dest->outfile)) in term_destination() 130 jpeg_stdio_dest (j_compress_ptr cinfo, FILE * outfile) in jpeg_stdio_dest() argument 150 dest->outfile = outfile; in jpeg_stdio_dest()
|
/external/jpeg/ |
D | ckconfig.c | 294 FILE *outfile; local 297 if ((outfile = fopen("jconfig.h", "w")) == NULL) { 303 fprintf(outfile, "/* jconfig.h --- generated by ckconfig.c */\n"); 304 fprintf(outfile, "/* see jconfig.doc for explanations */\n\n"); 306 fprintf(outfile, "#define HAVE_PROTOTYPES\n"); 308 fprintf(outfile, "#undef HAVE_PROTOTYPES\n"); 311 fprintf(outfile, "#define HAVE_UNSIGNED_CHAR\n"); 313 fprintf(outfile, "#undef HAVE_UNSIGNED_CHAR\n"); 316 fprintf(outfile, "#define HAVE_UNSIGNED_SHORT\n"); 318 fprintf(outfile, "#undef HAVE_UNSIGNED_SHORT\n"); [all …]
|
D | wrbmp.c | 297 FILE * outfile = dest->pub.output_file; in write_colormap() local 304 putc(GETJSAMPLE(colormap[2][i]), outfile); in write_colormap() 305 putc(GETJSAMPLE(colormap[1][i]), outfile); in write_colormap() 306 putc(GETJSAMPLE(colormap[0][i]), outfile); in write_colormap() 308 putc(0, outfile); in write_colormap() 313 putc(GETJSAMPLE(colormap[0][i]), outfile); in write_colormap() 314 putc(GETJSAMPLE(colormap[0][i]), outfile); in write_colormap() 315 putc(GETJSAMPLE(colormap[0][i]), outfile); in write_colormap() 317 putc(0, outfile); in write_colormap() 323 putc(i, outfile); in write_colormap() [all …]
|
D | jdatadst.c | 28 FILE * outfile; /* target stream */ member 85 if (JFWRITE(dest->outfile, dest->buffer, OUTPUT_BUF_SIZE) != in empty_output_buffer() 113 if (JFWRITE(dest->outfile, dest->buffer, datacount) != datacount) in term_destination() 116 fflush(dest->outfile); in term_destination() 118 if (ferror(dest->outfile)) in term_destination() 130 jpeg_stdio_dest (j_compress_ptr cinfo, FILE * outfile) in jpeg_stdio_dest() argument 150 dest->outfile = outfile; in jpeg_stdio_dest()
|
/external/harfbuzz/contrib/tables/ |
D | grapheme-break-parse.py | 20 def main(infile, outfile): argument 24 print >>outfile, '// Generated from Unicode Grapheme break tables\n' 25 print >>outfile, '#ifndef GRAPHEME_BREAK_PROPERTY_H_' 26 print >>outfile, '#define GRAPHEME_BREAK_PROPERTY_H_\n' 27 print >>outfile, '#include <stdint.h>' 28 print >>outfile, '#include "harfbuzz-external.h"\n' 29 print >>outfile, 'struct grapheme_break_property {' 30 print >>outfile, ' uint32_t range_start;' 31 print >>outfile, ' uint32_t range_end;' 32 print >>outfile, ' HB_GraphemeClass klass;' [all …]
|
D | category-parse.py | 45 def main(infile, outfile): argument 49 print >>outfile, '// Generated from Unicode script tables\n' 50 print >>outfile, '#ifndef CATEGORY_PROPERTIES_H_' 51 print >>outfile, '#define CATEGORY_PROPERTIES_H_\n' 52 print >>outfile, '#include <stdint.h>' 53 print >>outfile, '#include "harfbuzz-external.h"\n' 54 print >>outfile, 'struct category_property {' 55 print >>outfile, ' uint32_t range_start;' 56 print >>outfile, ' uint32_t range_end;' 57 print >>outfile, ' HB_CharCategory category;' [all …]
|
D | scripts-parse.py | 48 def main(infile, outfile): argument 54 print >>outfile, '// Generated from Unicode script tables\n' 55 print >>outfile, '#ifndef SCRIPT_PROPERTIES_H_' 56 print >>outfile, '#define SCRIPT_PROPERTIES_H_\n' 57 print >>outfile, '#include <stdint.h>' 58 print >>outfile, '#include "harfbuzz-shaper.h"\n' 59 print >>outfile, 'struct script_property {' 60 print >>outfile, ' uint32_t range_start;' 61 print >>outfile, ' uint32_t range_end;' 62 print >>outfile, ' HB_Script script;' [all …]
|
D | combining-class-parse.py | 10 def main(infile, outfile): argument 14 print >>outfile, '// Generated from Unicode tables\n' 15 print >>outfile, '#ifndef COMBINING_PROPERTIES_H_' 16 print >>outfile, '#define COMBINING_PROPERTIES_H_\n' 17 print >>outfile, '#include <stdint.h>' 18 print >>outfile, 'struct combining_property {' 19 print >>outfile, ' uint32_t range_start;' 20 print >>outfile, ' uint32_t range_end;' 21 print >>outfile, ' uint8_t klass;' 22 print >>outfile, '};\n' [all …]
|
D | mirroring-parse.py | 11 def main(infile, outfile): argument 31 print >>outfile, '// Generated from Unicode Bidi Mirroring tables\n' 32 print >>outfile, '#ifndef MIRRORING_PROPERTY_H_' 33 print >>outfile, '#define MIRRORING_PROPERTY_H_\n' 34 print >>outfile, '#include <stdint.h>' 35 print >>outfile, 'struct mirroring_property {' 36 print >>outfile, ' uint32_t a;' 37 print >>outfile, ' uint32_t b;' 38 print >>outfile, '};\n' 39 print >>outfile, 'static const struct mirroring_property mirroring_properties[] = {' [all …]
|
/external/e2fsprogs/lib/ss/ |
D | ct_c.awk | 4 rootname, rootname > outfile 5 print "#include <ss/ss.h>" > outfile 6 print "" >outfile 13 printf "static char const * const ssu%05d[] = {\n", cmdnum > outfile 26 printf "%s\"%s\",\n", cmdtab, cmd > outfile 41 print " (char const *)0" > outfile 42 print "};" > outfile 43 printf "extern void %s __SS_PROTO;\n", subr > outfile 58 print "#__ERROR_IN_FILE__" > outfile 62 printf "static ss_request_entry ssu%05d[] = {\n", cmdnum+1 > outfile [all …]
|
/external/icu4c/tools/gensprep/ |
D | filterRFC3454.pl | 69 $outfile = $destDir."/".$destFileName; 71 unlink($outfile); 72 $outFH = IO::File->new($outfile,"a") 73 or die "could not open the file $outfile for writing: $! \n"; 95 createUnassignedTable($inFH,$outfile); 98 createMapToNothing($inFH,$outfile); 101 createCaseMapNorm($inFH,$outfile); 104 createCaseMapNoNorm($inFH,$outfile); 107 createProhibitedTable($inFH,$outfile,$line); 110 createProhibitedTable($inFH,$outfile,$line); [all …]
|
/external/libvpx/libvpx/build/make/ |
D | gen_msvs_sln.sh | 27 --out=outfile Redirect output to a file 36 [ -f "${outfile}" ] && rm -f ${outfile}{,.mk} 43 [ -f "${outfile}" ] && rm -f ${outfile}{,.mk} 192 $nows_sln_config: $outfile 193 ${TAB}devenv.com $outfile -build "$config" 196 $nows_sln_config: $outfile 197 ${TAB}devenv.com $outfile -build "$sln_config" 201 $nows_sln_config: $outfile .nodevenv.once 212 outfile=/dev/stdout 218 --out=*) outfile="${optval}"; mkoutfile="${optval}".mk [all …]
|
D | gen_msvs_def.sh | 51 echo " $sym" >> ${outfile} 57 printf " %-40s DATA\n" "$sym" >> ${outfile} 67 --out=*) outfile="$optval" 76 outfile=${outfile:-/dev/stdout} 79 echo "LIBRARY ${name}" > ${outfile} 80 echo "EXPORTS" >> ${outfile}
|
/external/expat/tests/ |
D | xmltest.sh | 39 $XMLWF -p "$file" > outfile || return $? 40 read outdata < outfile 54 $XMLWF -p -d "$OUTPUT$reldir" "$file" > outfile || return $? 55 read outdata < outfile 58 diff -u "$OUTPUT$reldir$file" "out/$file" > outfile 59 if [ -s outfile ] ; then 60 cp outfile "$OUTPUT$reldir$file.diff" 103 rm outfile 112 rm outfile 131 rm outfile [all …]
|
/external/srec/tools/grxmlcompile/ |
D | netw_dump.cpp | 49 std::ofstream outfile; in WriteForwardGraphFile() local 57 outfile.open ( fileName.c_str() ); in WriteForwardGraphFile() 63 outfile << arc[loc]->fromId << std::endl; in WriteForwardGraphFile() 66 outfile << arc[loc]->fromId << separator << arc[loc]->toId << separator << Eps << std::endl; in WriteForwardGraphFile() 84 …outfile << arc[loc]->fromId << separator << arc[loc]->toId << separator << inLabel.c_str() << std… in WriteForwardGraphFile() 90 outfile.close(); in WriteForwardGraphFile() 107 std::ofstream outfile; in WriteForwardGraphWithSemantic() local 110 outfile.open ( fileName.c_str() ); in WriteForwardGraphWithSemantic() 172 outfile << arc[loc]->fromId << std::endl; in WriteForwardGraphWithSemantic() 174 …outfile << arc[loc]->fromId << Separator << arc[loc]->toId << Separator << inLabel.c_str() << Sep… in WriteForwardGraphWithSemantic() [all …]
|
/external/dropbear/ |
D | dropbearconvert.c | 34 const char* outfile); 63 const char* outfile; local 100 outfile = argv[4]; 102 return do_convert(intype, infile, outtype, outfile); 111 const char* outfile) { argument 137 if (import_write(outfile, key, NULL, outtype) != 1) { 138 fprintf(stderr, "Error writing key to '%s'\n", outfile); 140 fprintf(stderr, "Wrote key to '%s'\n", outfile);
|
/external/zlib/src/examples/ |
D | gun.c | 119 int outfile; member 139 if (me->outfile != -1) in out() 144 ret = (int)write(me->outfile, buf, ret); in out() 200 int outfile, z_stream *strm) in lunpipe() argument 221 outd.outfile = outfile; in lunpipe() 382 local int gunpipe(z_stream *strm, int infile, int outfile) in gunpipe() argument 414 ret = lunpipe(have, next, indp, outfile, strm); in gunpipe() 466 outd.outfile = outfile; in gunpipe() 550 int infile, outfile; in gunzip() local 565 outfile = -1; in gunzip() [all …]
|
/external/elfutils/libcpu/ |
D | i386_parse.y | 205 extern FILE *outfile; 1078 fprintf (outfile, "%s\n \"%s", in print_op_str() 1102 fprintf (outfile, " FCT_%s,\n", (*(struct argstring **) nodep)->str); in print_op_fct() 1120 fprintf (outfile, "#define MNEMONIC_BITS %zu\n", best_mnemonic_bits); in instrtable_out() 1122 fprintf (outfile, "#define MNEMONIC_BITS %ld\n", in instrtable_out() 1125 fprintf (outfile, "#define SUFFIX_BITS %d\n", nbitsuf); in instrtable_out() 1128 fprintf (outfile, "#define FCT%d_BITS %d\n", i + 1, nbitfct[i]); in instrtable_out() 1130 fprintf (outfile, "#define STR%d_BITS %d\n", i + 1, nbitstr[i]); in instrtable_out() 1131 fprintf (outfile, "#define OFF%d_1_BITS %d\n", i + 1, nbitoff[i][0]); in instrtable_out() 1132 fprintf (outfile, "#define OFF%d_1_BIAS %d\n", i + 1, minoff[i][0]); in instrtable_out() [all …]
|
/external/elfutils/tests/ |
D | test-subr.sh | 54 outfile="$1" 56 remove_files="$remove_files $outfile" 57 testrun "$@" > $outfile 2>&1 || : 62 outfile="${1##*/}.out" 63 testrun_out $outfile "$@" 64 diff -u $outfile -
|
/external/libvpx/libvpx/examples/ |
D | encoder_tmpl.c | 67 static void write_ivf_file_header(FILE *outfile, in write_ivf_file_header() argument 88 (void) fwrite(header, 1, 32, outfile); in write_ivf_file_header() 92 static void write_ivf_frame_header(FILE *outfile, in write_ivf_frame_header() argument 106 (void) fwrite(header, 1, 12, outfile); in write_ivf_frame_header() 110 FILE *infile, *outfile; in main() local 131 if(!(outfile = fopen(argv[4], "wb"))) in main() 141 write_ivf_file_header(outfile, &cfg, 0); in main() 182 if(!fseek(outfile, 0, SEEK_SET)) in main() 183 write_ivf_file_header(outfile, &cfg, frame_cnt-1); in main() 184 fclose(outfile); in main()
|
/external/e2fsprogs/lib/ext2fs/ |
D | test_io.c | 48 FILE *outfile; member 129 FILE *f = data->outfile; in test_dump_block() 150 f = data->outfile; in test_abort() 226 data->outfile = NULL; in test_open() 228 data->outfile = fopen(value, "w"); in test_open() 229 if (!data->outfile) in test_open() 230 data->outfile = stderr; in test_open() 274 if (data->outfile && data->outfile != stderr) in test_close() 275 fclose(data->outfile); in test_close() 298 fprintf(data->outfile, in test_set_blksize() [all …]
|