Home | History | Annotate | Download | only in puff

Lines Matching refs:sourcelen

726  * Inflate source to dest.  On return, destlen and sourcelen are updated to the
732 * sourcelen are not updated to facilitate retrying from the beginning with the
772 unsigned long *sourcelen) /* amount of input available */
785 s.inlen = *sourcelen;
809 *sourcelen = s.incnt;
889 unsigned long sourcelen, destlen;
928 sourcelen = (unsigned long)len;
929 ret = puff(NIL, &destlen, source + skip, &sourcelen);
934 if (sourcelen < len) fprintf(stderr, "%lu compressed bytes unused\n",
935 len - sourcelen);
946 puff(dest, &destlen, source + skip, &sourcelen);