/external/chromium_org/tools/gyp/test/intermediate_dir/ |
gyptest-intermediate-dir.py | 18 intermediate_file1 = test.read('src/outfile.txt') 31 intermediate_file2 = test.read('src/outfile.txt')
|
/external/jpeg/ |
jdatadst.c | 28 FILE * outfile; /* target stream */ member in struct:__anon26497 85 if (JFWRITE(dest->outfile, dest->buffer, OUTPUT_BUF_SIZE) != 113 if (JFWRITE(dest->outfile, dest->buffer, datacount) != datacount) 116 fflush(dest->outfile); 118 if (ferror(dest->outfile)) 130 jpeg_stdio_dest (j_compress_ptr cinfo, FILE * outfile) 150 dest->outfile = outfile;
|
/external/qemu/distrib/jpeg-6b/ |
jdatadst.c | 28 FILE * outfile; /* target stream */ member in struct:__anon33004 85 if (JFWRITE(dest->outfile, dest->buffer, OUTPUT_BUF_SIZE) != 113 if (JFWRITE(dest->outfile, dest->buffer, datacount) != datacount) 116 fflush(dest->outfile); 118 if (ferror(dest->outfile)) 130 jpeg_stdio_dest (j_compress_ptr cinfo, FILE * outfile) 150 dest->outfile = outfile;
|
/external/elfutils/0.153/libcpu/ |
i386_parse.y | 206 extern FILE *outfile; 1079 fprintf (outfile, "%s\n \"%s", 1103 fprintf (outfile, " FCT_%s,\n", (*(struct argstring **) nodep)->str); 1121 fprintf (outfile, "#define MNEMONIC_BITS %zu\n", best_mnemonic_bits); 1123 fprintf (outfile, "#define MNEMONIC_BITS %ld\n", 1126 fprintf (outfile, "#define SUFFIX_BITS %d\n", nbitsuf); 1129 fprintf (outfile, "#define FCT%d_BITS %d\n", i + 1, nbitfct[i]); 1131 fprintf (outfile, "#define STR%d_BITS %d\n", i + 1, nbitstr[i]); 1132 fprintf (outfile, "#define OFF%d_1_BITS %d\n", i + 1, nbitoff[i][0]); 1133 fprintf (outfile, "#define OFF%d_1_BIAS %d\n", i + 1, minoff[i][0]) [all...] |
/development/tools/yuv420sp2rgb/ |
cmdline.c | 40 "\t%s infile --height <height> --width <width> --output <outfile> -t <ppm|grb|argb> [ --gray ] [ --rotate <degrees> ] [ --verbose ]\n" 58 char **outfile, 67 ASSERT(outfile); *outfile = NULL; 118 SET_STRING_OPTION(outfile);
|
yuv420sp2rgb.c | 192 const char *outfile, 234 INFO("Opening output file %s\n", outfile); 235 ofd = open(outfile, O_RDWR | O_CREAT, 0664); 237 outfile, strerror(errno), errno); 244 INFO("Truncating output file %s to %d bytes\n", outfile, outsize); 249 INFO("Memory mapping output file %s\n", outfile); 272 char *infile, *outfile, *type; local 279 &outfile, 291 if (!outfile) { 314 INFO("output file: [%s]\n", outfile); [all...] |
/external/chromium_org/third_party/yasm/ |
yasm.gyp | 218 'outfile': '<(generated_dir)/nasm-macros.c', 223 'outputs': [ '<(outfile)', ], 225 '<(outfile)', '<(varname)', '<(infile)', ], 236 'outfile': '<(generated_dir)/nasm-version.c', 241 'outputs': [ '<(outfile)', ], 243 '<(outfile)', '<(varname)', '<(infile)', 255 'outfile': '<(generated_dir)/win64-gas.c', 260 'outputs': [ '<(outfile)', ], 262 '<(outfile)', '<(varname)', '<(infile)', 274 'outfile': '<(generated_dir)/win64-nasm.c' [all...] |
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/test/ |
ISACHist.cc | 27 FILE *outFile; 50 outFile = fopen(argv[2], "w"); 51 if(outFile == NULL) 153 fprintf(outFile, "%10lu\n", hist[n]); 155 fclose(outFile);
|
/frameworks/base/packages/SharedStorageBackup/src/com/android/sharedstoragebackup/ |
SharedStorageAgent.java | 70 File outFile = null; 78 outFile = new File(mVolumes[i].getPath(), relpath.substring(slash + 1)); 79 if (DEBUG) Slog.i(TAG, " => " + outFile.getAbsolutePath()); 89 if (outFile == null) { 93 FullBackup.restoreFile(data, size, type, -1, mtime, outFile);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/ |
build_scripts.py | 65 outfile = os.path.join(self.build_dir, os.path.basename(script)) 66 outfiles.append(outfile) 68 if not self.force and not newer(script, outfile): 96 outf = open(outfile, "w") 115 self.copy_file(script, outfile)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/ |
build_scripts.py | 65 outfile = os.path.join(self.build_dir, os.path.basename(script)) 66 outfiles.append(outfile) 68 if not self.force and not newer(script, outfile): 96 outf = open(outfile, "w") 115 self.copy_file(script, outfile)
|
/external/chromium_org/tools/ |
sort-headers.py | 75 def SortHeader(infile, outfile): 76 """Sorts the headers in infile, writing the sorted file to outfile.""" 90 outfile.write(header) 97 outfile.write(line) 120 outfile = open(fixfilename, 'wb') 121 SortHeader(infile, outfile) 123 outfile.close() # Important so the below diff gets the updated contents.
|
/external/chromium_org/tools/generate_stubs/ |
generate_stubs_unittest.py | 134 outfile = StringIO.StringIO() 135 gs.WriteWindowsDefFile(module_name, signatures, outfile) 136 contents = outfile.getvalue() 207 outfile = StringIO.StringIO() 208 self.writer.WriteImplementationContents('my_namespace', outfile) 209 contents = outfile.getvalue() 243 outfile = StringIO.StringIO() 245 outfile) 246 contents = outfile.getvalue() 278 outfile = StringIO.StringIO( [all...] |
/external/eigen/bench/btl/generic_bench/utils/ |
xy_file.hh | 66 ofstream outfile (filename.c_str(),ios::out) ; 70 outfile << X[i] << " " << Y[i] << endl; 72 outfile.close();
|
/external/fio/tools/ |
genfio | 26 OUTFILE= 135 cat >> $OUTFILE << EOF 162 cat >> $OUTFILE << EOF 168 echo "stonewall" >> $OUTFILE 172 cat >> $OUTFILE << EOF 181 echo >> $OUTFILE 276 OUTFILE=${PREFIX}$SHORT_HOSTNAME-$BLOCK_SIZE-all-$MODES-$PRINTABLE_DISKS.fio 280 OUTFILE=${PREFIX}$SHORT_HOSTNAME-$BLOCK_SIZE-sequential-$MODES-$PRINTABLE_DISKS.fio 283 OUTFILE=${PREFIX}$SHORT_HOSTNAME-$BLOCK_SIZE-parallel-$MODES-$PRINTABLE_DISKS.fio 336 echo "Generating $OUTFILE" [all...] |
/frameworks/base/docs/html/tools/help/ |
dmtracedump.jd | 16 dmtracedump [-ho] [-s sortable] [-d trace-base-name] [-g outfile] <trace-base-name> 36 <td><code>-g <em><outfile></em></code></td> 38 <td>Generate output to <outfile></td>
|
/libcore/luni/src/test/java/libcore/java/util/zip/ |
OldAndroidGZIPStreamTest.java | 40 FileOutputStream outFile = new FileOutputStream("/tmp/foo.gz"); 41 outFile.write(zipData, 0, zipData.length); 42 outFile.close();
|
/external/zlib/src/examples/ |
gun.c | 120 int outfile; member in struct:outd 140 if (me->outfile != -1) 145 ret = (int)write(me->outfile, buf, ret); 191 /* Decompress a compress (LZW) file from indp to outfile. The compress magic 201 int outfile, z_stream *strm) 222 outd.outfile = outfile; 371 /* Decompress a gzip file from infile to outfile. strm is assumed to have been 374 to the output file. If outfile is -1, then the gzip stream(s) integrity is 383 local int gunpipe(z_stream *strm, int infile, int outfile) 551 int infile, outfile; local [all...] |
/external/chromium_org/third_party/angle/src/compiler/preprocessor/ |
generate_parser.sh | 12 flex --noline --nounistd --outfile=$output_source $input_file
|
/external/chromium_org/third_party/libvpx/source/libvpx/examples/ |
vp8_multi_resolution_encoder.c | 132 static void write_ivf_file_header(FILE *outfile, 153 (void) fwrite(header, 1, 32, outfile); 156 static void write_ivf_frame_header(FILE *outfile, 170 (void) fwrite(header, 1, 12, outfile); 175 FILE *infile, *outfile[NUM_ENCODERS]; local 215 die("Usage: %s <width> <height> <infile> <outfile(s)> <output psnr?>\n", 235 outfile[i] = NULL; 239 if(!(outfile[i] = fopen(argv[i+4], "wb"))) 324 if(outfile[i]) 325 write_ivf_file_header(outfile[i], &cfg[i], 0) [all...] |
/external/chromium_org/tools/gyp/test/intermediate_dir/src/ |
test.gyp | 16 'outfile.txt',
|
test2.gyp | 16 'outfile.txt',
|
/external/emma/core/res/com/vladium/emma/data/ |
merge_usage.res | 7 'out', 'outfile':
|
/external/libvpx/libvpx/examples/ |
vp8_multi_resolution_encoder.c | 132 static void write_ivf_file_header(FILE *outfile, 153 (void) fwrite(header, 1, 32, outfile); 156 static void write_ivf_frame_header(FILE *outfile, 170 (void) fwrite(header, 1, 12, outfile); 175 FILE *infile, *outfile[NUM_ENCODERS]; local 215 die("Usage: %s <width> <height> <infile> <outfile(s)> <output psnr?>\n", 235 outfile[i] = NULL; 239 if(!(outfile[i] = fopen(argv[i+4], "wb"))) 324 if(outfile[i]) 325 write_ivf_file_header(outfile[i], &cfg[i], 0) [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/ |
vp8_multi_resolution_encoder.c | 132 static void write_ivf_file_header(FILE *outfile, 153 (void) fwrite(header, 1, 32, outfile); 156 static void write_ivf_frame_header(FILE *outfile, 170 (void) fwrite(header, 1, 12, outfile); 175 FILE *infile, *outfile[NUM_ENCODERS]; local 215 die("Usage: %s <width> <height> <infile> <outfile(s)> <output psnr?>\n", 235 outfile[i] = NULL; 239 if(!(outfile[i] = fopen(argv[i+4], "wb"))) 324 if(outfile[i]) 325 write_ivf_file_header(outfile[i], &cfg[i], 0) [all...] |