HomeSort by relevance Sort by last modified time
    Searched full:infun (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.
52 * The input function is invoked: len = infun(how, &buf), where buf is set by
53 * infun() to point to the input buffer, and infun() returns the number of
54 * available bytes there. If infun() returns zero, then blast() returns with
56 * use by the application to pass an input descriptor to infun(), if desired.
blast.c 39 blast_in infun; /* input function provided by user */ member in struct:state
40 void *inhow; /* opaque information passed to infun() */
76 s->left = s->infun(s->inhow, &(s->in));
160 s->left = s->infun(s->inhow, &(s->in));
379 int blast(blast_in infun, void *inhow, blast_out outfun, void *outhow)
385 s.infun = infun;

Completed in 95 milliseconds