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

  /external/zlib/src/contrib/blast/
blast.h 45 int blast(blast_in infun, void *inhow, blast_out outfun, void *outhow);
46 /* Decompress input to output using the provided infun() and outfun() calls.
58 * The output function is invoked: err = outfun(how, buf, len), where the bytes
60 * with an output error. outfun() is always called with len <= 4096. outhow
61 * is for use by the application to pass an output descriptor to outfun(), if
blast.c 50 blast_out outfun; /* output function provided by user */ member in struct:state
51 void *outhow; /* opaque information passed to outfun() */
358 if (s->outfun(s->outhow, s->out, s->next)) return 1;
369 if (s->outfun(s->outhow, s->out, s->next)) return 1;
379 int blast(blast_in infun, void *inhow, blast_out outfun, void *outhow)
392 s.outfun = outfun;
404 if (err != 1 && s.next && s.outfun(s.outhow, s.out, s.next) && err == 0)

Completed in 56 milliseconds