HomeSort by relevance Sort by last modified time
    Searched refs:outputfile (Results 1 - 12 of 12) sorted by null

  /external/valgrind/auxprogs/
getoff.c 80 "Usage: %s [--help] [-h] [-v] [-o <outputfile>]\n"
83 "Use -o to output to <outputfile>\n"
92 FILE *outputfile; local
95 outputfile = stdout;
112 outputfile = fopen(argv[i], "w");
113 if (outputfile == NULL) {
154 fprintf(outputfile,
165 if (outputfile != stdout)
166 if (fclose (outputfile) != 0) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_imgfile.py 21 outputfile = '/tmp/deleteme'
56 imgfile.write (outputfile, image, sizes[0], sizes[1], sizes[2])
99 imgfile.write (outputfile, simage, sizes[0]/2, sizes[1]/2, sizes[2])
101 os.unlink(outputfile)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_imgfile.py 21 outputfile = '/tmp/deleteme'
56 imgfile.write (outputfile, image, sizes[0], sizes[1], sizes[2])
99 imgfile.write (outputfile, simage, sizes[0]/2, sizes[1]/2, sizes[2])
101 os.unlink(outputfile)
  /external/ceres-solver/examples/
pgm_image.h 186 std::ofstream outputfile(filename.c_str());
187 outputfile << "P2" << std::endl;
188 outputfile << "# PGM format" << std::endl;
189 outputfile << " # <width> <height> <levels> " << std::endl;
190 outputfile << " # <data> ... " << std::endl;
191 outputfile << width_ << ' ' << height_ << " 255 " << std::endl;
197 outputfile << static_cast<int>(data_[i] + 0.5) << ' ';
200 return bool(outputfile); // Returns true/false
  /external/libxml2/
check-xinclude-test-suite.py 85 outputfile = None
103 outputfile = output
119 diff = os.popen("diff %s xinclude.res" % outputfile).read()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
SimpleHTTPServer.py 61 to the outputfile by the caller unless the command was HEAD,
163 def copyfile(self, source, outputfile):
177 shutil.copyfileobj(source, outputfile)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
SimpleHTTPServer.py 61 to the outputfile by the caller unless the command was HEAD,
163 def copyfile(self, source, outputfile):
177 shutil.copyfileobj(source, outputfile)
  /external/libvpx/libvpx/
vpxdec.c 72 static const arg_def_t outputfile = ARG_DEF("o", "output", 1, variable
93 &progressarg, &limitarg, &skiparg, &postprocarg, &summaryarg, &outputfile,
560 } else if (arg_match(&arg, &outputfile, argi))
    [all...]
vpxenc.c 130 static const arg_def_t outputfile = ARG_DEF("o", "output", 1, variable
203 &outputfile, &codecarg, &passes, &pass_arg, &fpf_name, &limit, &skip,
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
vpxdec.c 68 static const arg_def_t outputfile = ARG_DEF("o", "output", 1, variable
87 &progressarg, &limitarg, &skiparg, &postprocarg, &summaryarg, &outputfile,
549 } else if (arg_match(&arg, &outputfile, argi))
vpxenc.c 177 static const arg_def_t outputfile = ARG_DEF("o", "output", 1, variable
242 &outputfile, &codecarg, &passes, &pass_arg, &fpf_name, &limit, &skip,
    [all...]
  /external/fio/tools/plot/
fio2gnuplot 361 print 'fio2gnuplot -ghbiodvk -t <title> -o <outputfile> -p <pattern> -G <type> -m <time> -M <time>'
368 print '-o or --outputfile <file> : The basename for gnuplot traces'
410 opts, args = getopt.getopt(argv[1:],"ghkbivo:d:t:p:G:m:M:",['bandwidth', 'iops', 'pattern', 'outputfile', 'outputdir', 'title', 'min_time', 'max_time', 'gnuplot', 'Global', 'help', 'verbose','keep'])
430 elif opt in ("-o", "--outputfile"):

Completed in 225 milliseconds