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

  /external/zlib/contrib/blast/
blast.h 41 int blast(blast_in infun, void *inhow, blast_out outfun, void *outhow);
42 /* Decompress input to output using the provided infun() and outfun() calls.
48 * The input function is invoked: len = infun(how, &buf), where buf is set by
49 * infun() to point to the input buffer, and infun() returns the number of
50 * available bytes there. If infun() returns zero, then blast() returns with
52 * use by the application to pass an input descriptor to infun(), if desired.
blast.c 37 blast_in infun; /* input function provided by user */ member in struct:state
38 void *inhow; /* opaque information passed to infun() */
74 s->left = s->infun(s->inhow, &(s->in));
158 s->left = s->infun(s->inhow, &(s->in));
377 int blast(blast_in infun, void *inhow, blast_out outfun, void *outhow)
383 s.infun = infun;

Completed in 40 milliseconds