HomeSort by relevance Sort by last modified time
    Searched full:outfile (Results 126 - 150 of 704) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/third_party/libvpx/source/libvpx/examples/
simple_decoder.c 96 fprintf(stderr, "Usage: %s <infile> <outfile>\n", exec_name);
102 FILE *outfile = NULL; local
117 if (!(outfile = fopen(argv[2], "wb")))
141 vpx_img_write(img, outfile);
155 fclose(outfile);
  /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);
pkeyparam.c 71 char **args, *infile = NULL, *outfile = NULL; local
106 outfile = *args;
158 if (outfile)
160 if (!(out = BIO_new_file (outfile, "w")))
163 "Can't open output file %s\n", outfile);
  /external/chromium_org/third_party/skia/platform_tools/android/tests/
makefile_writer_tests.py 157 fd, outfile = tempfile.mkstemp()
158 with open(outfile, 'w') as f:
163 utils.compare_to_expectation(outfile, filename, self.assertTrue,
172 with open(outfile, 'r') as f:
174 os.remove(outfile)
  /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);
simple_decoder.c 96 fprintf(stderr, "Usage: %s <infile> <outfile>\n", exec_name);
102 FILE *outfile = NULL; local
117 if (!(outfile = fopen(argv[2], "wb")))
141 vpx_img_write(img, outfile);
155 fclose(outfile);
  /external/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);
pkeyparam.c 71 char **args, *infile = NULL, *outfile = NULL; local
106 outfile = *args;
158 if (outfile)
160 if (!(out = BIO_new_file (outfile, "w")))
163 "Can't open output file %s\n", outfile);
  /external/skia/platform_tools/android/tests/
makefile_writer_tests.py 157 fd, outfile = tempfile.mkstemp()
158 with open(outfile, 'w') as f:
163 utils.compare_to_expectation(outfile, filename, self.assertTrue,
172 with open(outfile, 'r') as f:
174 os.remove(outfile)
  /frameworks/base/core/java/com/android/server/backup/
SystemBackupAgent.java 147 File outFile = null;
151 outFile = new File(WALLPAPER_INFO);
154 outFile = new File(WALLPAPER_IMAGE);
160 if (outFile == null) {
163 FullBackup.restoreFile(data, size, type, mode, mtime, outFile);
  /frameworks/base/packages/Keyguard/scripts/
new_merge.py 130 def prepareFileForCompare(inFile, outFile, skip="", replace="", withText=""):
131 # Delete the outfile, so we're starting with a new file
132 if (os.path.exists(outFile)):
133 os.remove(outFile)
136 fout = open(outFile, "w")
  /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);
simple_decoder.c 96 fprintf(stderr, "Usage: %s <infile> <outfile>\n", exec_name);
102 FILE *outfile = NULL; local
117 if (!(outfile = fopen(argv[2], "wb")))
141 vpx_img_write(img, outfile);
155 fclose(outfile);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
cfmfile.py 161 def copydata(self, outfile):
173 offset = outfile.tell()
176 outfile.seek(offset)
182 outfile.write(infile.read(BUFSIZE))
185 outfile.write(infile.read(l))
  /external/chromium_org/chrome/common/
BUILD.gn 110 outfile = "$target_gen_dir/chrome_version_info_posix.h"
111 outputs = [ outfile ]
118 rebase_path(outfile, root_build_dir),
  /external/chromium_org/native_client_sdk/src/tools/
genhttpfs.py 35 outfile = open(options.output, 'w')
37 outfile = sys.stdout
67 outfile.write('%s %d %s\n' % (mode, stat.st_size, relname))
  /external/smali/baksmali/
build.gradle 93 def outFile = fatJar.destinationDir.getPath() + '/' + fatJar.baseName + '-' + fatJar.version + '-small' + '.' + fatJar.extension
95 outputs.file outFile
100 args '-outjars ' + outFile
  /frameworks/base/docs/html/tools/help/
zipalign.jd 46 <p>To align {@code infile.apk} and save it as {@code outfile.apk}:</p>
48 <pre>zipalign [-f] [-v] &lt;alignment> infile.apk outfile.apk</pre>
61 <li>{@code -f} : overwrite existing outfile.zip</li>
  /external/chromium_org/third_party/libvpx/source/libvpx/test/
resize_test.cc 38 int frame_cnt, FILE *const outfile) {
55 (void)fwrite(header, 1, 32, outfile);
58 static void write_ivf_frame_size(FILE *const outfile, const size_t size) {
61 (void)fwrite(header, 1, 4, outfile);
65 FILE *const outfile) {
77 (void)fwrite(header, 1, 12, outfile);
  /external/libvpx/libvpx/test/
resize_test.cc 38 int frame_cnt, FILE *const outfile) {
55 (void)fwrite(header, 1, 32, outfile);
58 static void write_ivf_frame_size(FILE *const outfile, const size_t size) {
61 (void)fwrite(header, 1, 4, outfile);
65 FILE *const outfile) {
77 (void)fwrite(header, 1, 12, outfile);
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
picoloaddbg.lua 32 local outfile = io.open(arg[2], "wb")
33 if not outfile then
171 outfile:write(string.sub(symtab[i], j, j))
173 outfile:write("\0")
178 outfile:write("\0\0\0\0\0\0\0\0")
187 outfile:close()
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
resize_test.cc 38 int frame_cnt, FILE *const outfile) {
55 (void)fwrite(header, 1, 32, outfile);
58 static void write_ivf_frame_size(FILE *const outfile, const size_t size) {
61 (void)fwrite(header, 1, 4, outfile);
65 FILE *const outfile) {
77 (void)fwrite(header, 1, 12, 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"

Completed in 416 milliseconds

1 2 3 4 56 7 8 91011>>