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

  /external/zlib/src/examples/
gun.c 538 /* Decompress the file inname to the file outnname, of if test is true, just
540 inname is NULL or an empty string, read from stdin. If outname is NULL or
542 structure. When appropriate, copy the file attributes from inname to
548 local int gunzip(z_stream *strm, char *inname, char *outname, int test)
554 if (inname == NULL || *inname == 0) {
555 inname = "-";
559 infile = open(inname, O_RDONLY, 0);
561 fprintf(stderr, "gun cannot open %s\n", inname);
591 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...]
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/test/
test_iSACfixfloat.c 93 char inname[50], outname[50], bottleneck_file[50], bitfilename[60], bitending[10]="_bits.pcm"; local
270 sscanf(argv[argc-2], "%s", inname);
273 if ((inp = fopen(inname,"rb")) == NULL) {
274 printf(" iSAC: Cannot read file %s.\n", inname);
281 printf("\nInput:%s\nOutput:%s\n", inname, outname);
kenny.c 96 char inname[100], outname[100], outbitsname[100], bottleneck_file[100]; local
418 sscanf(argv[argc-2], "%s", inname);
430 if ((inp = fopen(inname,"rb")) == NULL) {
431 printf(" iSAC: Cannot read file %s\n", inname);
443 printf("\nInput:%s\nOutput:%s\n\n", inname, outname);
  /external/llvm/lib/Target/NVPTX/
NVPTXISelLowering.cpp     [all...]

Completed in 1758 milliseconds