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

  /external/zlib/examples/
gun.c 537 /* Decompress the file inname to the file outnname, of if test is true, just
539 inname is NULL or an empty string, read from stdin. If outname is NULL or
541 structure. When appropriate, copy the file attributes from inname to
547 local int gunzip(z_stream *strm, char *inname, char *outname, int test)
553 if (inname == NULL || *inname == 0) {
554 inname = "-";
558 infile = open(inname, O_RDONLY, 0);
560 fprintf(stderr, "gun cannot open %s\n", inname);
590 copymeta(inname, outname); /* copy attributes *
    [all...]
  /external/libpng/
pngtest.c 96 int test_one_file PNGARG((PNG_CONST char *inname, PNG_CONST char *outname));
687 test_one_file(PNG_CONST char *inname, PNG_CONST char *outname)
721 MultiByteToWideChar(CP_ACP, 0, inname, -1, path, MAX_PATH);
725 if ((fpin = fopen(inname, "rb")) == NULL)
728 fprintf(STDERR, "Could not find input file %s\n", inname);
757 png_set_error_fn(read_ptr, (png_voidp)inname, pngtest_error,
782 png_set_error_fn(write_ptr, (png_voidp)inname, pngtest_error,
802 fprintf(STDERR, "%s -> %s: libpng read error\n", inname, outname);
826 fprintf(STDERR, "%s -> %s: libpng write error\n", inname, outname);
1446 static PNG_CONST char *inname = "pngtest\/png"; variable
1449 static PNG_CONST char *inname = "pngtest.png"; variable
    [all...]
  /external/libpng/contrib/gregbook/
wpng.c 163 char *inname = NULL, outname[256]; local
289 inname = *argv;
300 if (!inname) {
324 } else if ((len = strlen(inname)) > 250) {
328 } else if (!(wpng_info.infile = fopen(inname, "rb"))) {
329 fprintf(stderr, PROGNAME ": can't open input file [%s]\n", inname);
340 inname);
364 /* make outname from inname */
365 if ((p = strrchr(inname, '.')) == NULL ||
366 (p - inname) != (len - 4)
    [all...]

Completed in 3098 milliseconds