HomeSort by relevance Sort by last modified time
    Searched refs:outfile (Results 51 - 75 of 329) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/eigen/bench/btl/generic_bench/timers/
x86_timer.hh 121 ofstream outfile (filemane.c_str(),ios::out) ;
126 outfile << (*itr).first << " " << (*itr).second << endl ;
129 outfile.close();
135 ofstream outfile (filemane.c_str(),ios::out) ;
141 outfile << i << " "
147 outfile.close();
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
uu_codec.py 30 outfile = StringIO()
32 write = outfile.write
42 return (outfile.getvalue(), len(input))
65 outfile = StringIO()
67 write = outfile.write
94 return (outfile.getvalue(), len(input))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
uu_codec.py 30 outfile = StringIO()
32 write = outfile.write
42 return (outfile.getvalue(), len(input))
65 outfile = StringIO()
67 write = outfile.write
94 return (outfile.getvalue(), len(input))
  /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/build/android/gn/
zip.py 17 with zipfile.ZipFile(output, 'w') as outfile:
19 outfile.write(f, os.path.relpath(f, base_dir))
  /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);
  /external/chromium_org/third_party/libvpx/source/libvpx/build/make/
armlink_adapter.sh 23 outfile=$i
52 cmd="armlink $args --userlibpath=$libsearchpath --output=$outfile $infiles"
  /external/chromium_org/third_party/libvpx/source/libvpx/examples/
decode_with_drops.c 71 fprintf(stderr, "Usage: %s <infile> <outfile> <N-M|N/M>\n", exec_name);
77 FILE *outfile = NULL; local
96 if (!(outfile = fopen(argv[2], "wb")))
135 vpx_img_write(img, outfile);
151 fclose(outfile);
postproc.c 58 fprintf(stderr, "Usage: %s <infile> <outfile>\n", exec_name);
64 FILE *outfile = NULL; local
80 if (!(outfile = fopen(argv[2], "wb")))
125 vpx_img_write(img, outfile);
138 fclose(outfile);
decode_to_md5.c 77 fprintf(stderr, "Usage: %s <infile> <outfile>\n", exec_name);
83 FILE *outfile = NULL; local
98 if (!(outfile = fopen(argv[2], "wb")))
125 print_md5(outfile, digest);
126 fprintf(outfile, " img-%dx%d-%04d.i420\n",
137 fclose(outfile);
  /external/chromium_org/third_party/openssl/openssl/crypto/rc4/
rc4.c 77 char *infile=NULL,*outfile=NULL,*keystr=NULL; local
96 outfile= *(++argv);
133 if (outfile == NULL)
137 out=fopen(outfile,"w");
  /external/libvpx/libvpx/build/make/
armlink_adapter.sh 23 outfile=$i
52 cmd="armlink $args --userlibpath=$libsearchpath --output=$outfile $infiles"
  /external/libvpx/libvpx/examples/
decode_with_drops.c 71 fprintf(stderr, "Usage: %s <infile> <outfile> <N-M|N/M>\n", exec_name);
77 FILE *outfile = NULL; local
96 if (!(outfile = fopen(argv[2], "wb")))
135 vpx_img_write(img, outfile);
151 fclose(outfile);
postproc.c 58 fprintf(stderr, "Usage: %s <infile> <outfile>\n", exec_name);
64 FILE *outfile = NULL; local
80 if (!(outfile = fopen(argv[2], "wb")))
125 vpx_img_write(img, outfile);
138 fclose(outfile);
  /external/openssl/crypto/rc4/
rc4.c 77 char *infile=NULL,*outfile=NULL,*keystr=NULL; local
96 outfile= *(++argv);
133 if (outfile == NULL)
137 out=fopen(outfile,"w");
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/build/make/
armlink_adapter.sh 23 outfile=$i
52 cmd="armlink $args --userlibpath=$libsearchpath --output=$outfile $infiles"
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/
decode_with_drops.c 71 fprintf(stderr, "Usage: %s <infile> <outfile> <N-M|N/M>\n", exec_name);
77 FILE *outfile = NULL; local
96 if (!(outfile = fopen(argv[2], "wb")))
135 vpx_img_write(img, outfile);
151 fclose(outfile);
postproc.c 58 fprintf(stderr, "Usage: %s <infile> <outfile>\n", exec_name);
64 FILE *outfile = NULL; local
80 if (!(outfile = fopen(argv[2], "wb")))
125 vpx_img_write(img, outfile);
138 fclose(outfile);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/tests/
test_tool.py 63 outfile = test_support.TESTFN + '.out'
64 rc, out, err = assert_python_ok('-m', 'json.tool', infile, outfile)
65 self.addCleanup(os.remove, outfile)
66 with open(outfile, "r") as fp:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/tests/
test_tool.py 63 outfile = test_support.TESTFN + '.out'
64 rc, out, err = assert_python_ok('-m', 'json.tool', infile, outfile)
65 self.addCleanup(os.remove, outfile)
66 with open(outfile, "r") as fp:
  /external/chromium_org/third_party/skia/gm/
gm_json.py 188 with io.open(file_path, mode='w', newline='', encoding='utf-8') as outfile:
189 outfile.write(unicode(json.dumps(json_dict, outfile, sort_keys=True,
  /external/skia/gm/
gm_json.py 188 with io.open(file_path, mode='w', newline='', encoding='utf-8') as outfile:
189 outfile.write(unicode(json.dumps(json_dict, outfile, sort_keys=True,
  /external/jpeg/
wrbmp.c 297 FILE * outfile = dest->pub.output_file; local
304 putc(GETJSAMPLE(colormap[2][i]), outfile); local
305 putc(GETJSAMPLE(colormap[1][i]), outfile); local
306 putc(GETJSAMPLE(colormap[0][i]), outfile); local
308 putc(0, outfile);
313 putc(GETJSAMPLE(colormap[0][i]), outfile); local
314 putc(GETJSAMPLE(colormap[0][i]), outfile); local
315 putc(GETJSAMPLE(colormap[0][i]), outfile); local
317 putc(0, outfile);
323 putc(i, outfile);
347 register FILE * outfile = dest->pub.output_file; local
    [all...]
  /external/qemu/distrib/jpeg-6b/
wrbmp.c 297 FILE * outfile = dest->pub.output_file; local
304 putc(GETJSAMPLE(colormap[2][i]), outfile); local
305 putc(GETJSAMPLE(colormap[1][i]), outfile); local
306 putc(GETJSAMPLE(colormap[0][i]), outfile); local
308 putc(0, outfile);
313 putc(GETJSAMPLE(colormap[0][i]), outfile); local
314 putc(GETJSAMPLE(colormap[0][i]), outfile); local
315 putc(GETJSAMPLE(colormap[0][i]), outfile); local
317 putc(0, outfile);
323 putc(i, outfile);
347 register FILE * outfile = dest->pub.output_file; local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/apps/
nseq.c 72 char **args, *infile = NULL, *outfile = NULL; local
92 outfile = *args;
116 if (outfile) {
117 if (!(out = BIO_new_file (outfile, "w"))) {
119 "Can't open output file %s\n", outfile);

Completed in 1096 milliseconds

1 23 4 5 6 7 8 91011>>