Searched defs:destlen (Results 1 - 3 of 3) sorted by relevance

/external/zlib/contrib/puff/
H A Dpufftest.c95 unsigned long sourcelen, destlen; local
137 ret = puff(NIL, &destlen, source + skip, &sourcelen);
141 fprintf(stderr, "puff() succeeded uncompressing %lu bytes\n", destlen);
149 destlen >>= 1;
150 dest = malloc(destlen);
156 puff(dest, &destlen, source + skip, &sourcelen);
158 fwrite(dest, 1, destlen, stdout);
H A Dpuff.c747 * Inflate source to dest. On return, destlen and sourcelen are updated to the
752 * output space, then a positive error is returned. In that case, destlen and
760 * the input value of *destlen is ignored, and on return *destlen is set to the
791 unsigned long *destlen, /* amount of output space */
801 s.outlen = *destlen; /* ignored if dest is NIL */
833 *destlen = s.outcnt;
790 puff(unsigned char *dest, unsigned long *destlen, const unsigned char *source, unsigned long *sourcelen) argument
/external/libmtp/src/
H A Dptp-pack.c109 size_t nconv, srclen, destlen; local
126 destlen = sizeof(loclstr)-1;
130 &dest, &destlen);

Completed in 71 milliseconds