Home | History | Annotate | Download | only in puff

Lines Matching refs:source

24  * and document some of the less obvious aspects of the format.  This source
36 * - Update puff() dest and source pointers on negative
43 * - Use pointers instead of long to specify source and
726 * Inflate source to dest. On return, destlen and sourcelen are updated to the
729 * source data, i.e. it is not in the deflate format, then a negative value is
734 * inflate data (a negative error), the dest and source pointers are updated to
771 unsigned char *source, /* pointer to source data pointer */
784 s.in = source;
887 unsigned char *source = NULL, *dest;
909 source = load(name, &len);
910 if (source == NULL) {
917 free(source);
922 free(source);
929 ret = puff(NIL, &destlen, source + skip, &sourcelen);
943 free(source);
946 puff(dest, &destlen, source + skip, &sourcelen);
952 free(source);