HomeSort by relevance Sort by last modified time
    Searched full:infile (Results 176 - 200 of 399) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/qemu/distrib/jpeg-6b/
rdjpgcom.c 61 static FILE * infile; /* input JPEG file */ variable
64 #define NEXTBYTE() getc(infile)
471 if ((infile = fopen(argv[argn], READ_BINARY)) == NULL) {
481 if ((infile = fdopen(fileno(stdin), READ_BINARY)) == NULL) {
486 infile = stdin;
wrjpgcom.c 75 static FILE * infile; /* input JPEG file */ variable
78 #define NEXTBYTE() getc(infile)
485 if ((infile = fopen(argv[argn], READ_BINARY)) == NULL) {
495 if ((infile = fdopen(fileno(stdin), READ_BINARY)) == NULL) {
500 infile = stdin;
rdbmp.c 71 register FILE *infile = sinfo->pub.input_file; local
74 if ((c = getc(infile)) == EOF)
190 register FILE *infile = source->pub.input_file; local
210 if ((c = getc(infile)) == EOF)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_file2k.py 619 writing a final newline char and closing the infile pipe.
621 object named 'infile' and validate the result. This will be
625 universal_newlines: If True, infile will be opened in universal
631 infile_setup_code = 'infile = os.fdopen(sys.stdin.fileno(), "rU")'
633 infile_setup_code = 'infile = sys.stdin'
643 'assert isinstance(infile, file) ;'
695 'line = infile.readline() ;'
711 'lines = infile.readlines() ;'
729 'data = infile.read() ;'
742 'num_read = infile.readinto(data) ;
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_file2k.py 619 writing a final newline char and closing the infile pipe.
621 object named 'infile' and validate the result. This will be
625 universal_newlines: If True, infile will be opened in universal
631 infile_setup_code = 'infile = os.fdopen(sys.stdin.fileno(), "rU")'
633 infile_setup_code = 'infile = sys.stdin'
643 'assert isinstance(infile, file) ;'
695 'line = infile.readline() ;'
711 'lines = infile.readlines() ;'
729 'data = infile.read() ;'
742 'num_read = infile.readinto(data) ;
    [all...]
  /external/bzip2/
bzip2recover.c 303 FILE* inFile;
351 inFile = fopen ( inFileName, "rb" );
352 if (inFile == NULL) {
357 bsIn = bsOpenReadStream ( inFile );
425 inFile = fopen ( inFileName, "rb" );
426 if (inFile == NULL) {
430 bsIn = bsOpenReadStream ( inFile );
  /external/zlib/src/test/
minigzip.c 500 char *infile, *outfile; local
517 infile = file;
522 infile = buf;
526 strcat(infile, GZ_SUFFIX);
529 in = gzopen(infile, "rb");
531 fprintf(stderr, "%s: can't gzopen %s\n", prog, infile);
542 unlink(infile);
  /external/libpng/contrib/gregbook/
rpng-win.c 118 static FILE *infile; variable
184 infile = fopen("/etc/config/system.glGammaVal", "r");
185 if (infile) {
188 fgets(tmpline, 80, infile);
189 fclose(infile);
305 if (!(infile = fopen(filename, "rb"))) {
309 if ((rc = readpng_init(infile, &image_width, &image_height)) != 0) {
331 fclose(infile);
399 fclose(infile);
rpng-x.c 126 static FILE *infile; variable
198 infile = fopen("/etc/config/system.glGammaVal", "r");
199 if (infile) {
202 fgets(tmpline, 80, infile);
203 fclose(infile);
295 if (!(infile = fopen(filename, "rb"))) {
299 if ((rc = readpng_init(infile, &image_width, &image_height)) != 0) {
329 fclose(infile);
387 fclose(infile);
readpng.c 87 int readpng_init(FILE *infile, ulg *pWidth, ulg *pHeight)
95 fread(sig, 1, 8, infile);
127 png_init_io(png_ptr, infile);
  /external/chromium_org/third_party/protobuf/src/google/protobuf/io/
zero_copy_stream.h 86 // // Copy the contents of "infile" to "outfile", using plain read() for
87 // // "infile" but a ZeroCopyOutputStream for "outfile".
88 // int infd = open("infile", O_RDONLY);
  /external/chromium_org/tools/generate_stubs/
generate_stubs.py 381 def ParseSignatures(infile):
402 infile: File object holding a text file of function signatures.
412 for line in infile:
    [all...]
  /external/chromium_org/webkit/browser/fileapi/
native_file_util.cc 40 net::FileStream infile(NULL);
41 if (infile.OpenSync(from,
56 int bytes_read = infile.ReadSync(&buffer[0], kBufferSize);
  /external/emma/core/java12/com/vladium/emma/rt/
ClassPathProcessorST.java 201 final File inFile = Files.newFile (pathDir, file.getPath ());
202 readFile (inFile);
204 srcURL = inFile.toURL ().toExternalForm ();
  /external/lzma/CPP/7zip/UI/Common/
ArchiveExtractCallback.cpp 467 CInFileStream *inFile = new CInFileStream;
468 CMyComPtr<ISequentialInStream> inStreamTemp = inFile;
469 if (!inFile->Open(_srcDirectoryPrefix + name))
  /external/protobuf/src/google/protobuf/io/
zero_copy_stream.h 86 // // Copy the contents of "infile" to "outfile", using plain read() for
87 // // "infile" but a ZeroCopyOutputStream for "outfile".
88 // int infd = open("infile", O_RDONLY);
  /external/chromium_org/third_party/WebKit/Source/build/scripts/
make_runtime_features.py 33 from in_file import InFile
  /external/chromium_org/third_party/openssl/openssl/apps/
pkeyutl.c 91 char *infile = NULL, *outfile = NULL, *sigfile = NULL; local
122 else infile= *(++argv);
255 if(infile)
257 if(!(in = BIO_new_file(infile, "rb")))
  /external/jpeg/
rdbmp.c 71 register FILE *infile = sinfo->pub.input_file; local
74 if ((c = getc(infile)) == EOF)
190 register FILE *infile = source->pub.input_file; local
210 if ((c = getc(infile)) == EOF)
  /external/libvpx/libvpx/examples/
decode_with_drops.txt 18 die("Usage: %s <infile> <outfile> <N-M|N/M>\n", argv[0]);
twopass_encoder.txt 44 frame_avail = read_frame(infile, &raw);
  /external/libvpx/libvpx/examples/includes/geshi/geshi/
sql.php 70 'IN', 'INDEX', 'INFILE', 'INNER', 'INSERT', 'INTO',
  /external/mdnsresponder/mDNSPosix/
parselog.py 64 def parselog(inFile):
65 f = open(inFile)
73 print "Reading " + inFile
175 outFile = "%s.pdf" % (".".join(inFile.split('.')[:-1]))
  /external/openssl/apps/
pkeyutl.c 91 char *infile = NULL, *outfile = NULL, *sigfile = NULL; local
122 else infile= *(++argv);
255 if(infile)
257 if(!(in = BIO_new_file(infile, "rb")))
  /build/tools/zipalign/
ZipAlign.cpp 35 "Usage: zipalign [-f] [-v] <align> infile.zip outfile.zip\n"
36 " zipalign -c [-v] <align> infile.zip\n\n" );

Completed in 309 milliseconds

1 2 3 4 5 6 78 91011>>