Lines Matching defs:dstbuf
178 void *dstbuf;
196 dstbuf = malloc(dstlen);
197 if (dstbuf == NULL) {
215 ret = compress2(dstbuf, &dlen, (Bytef *)srcaddr, slen, 9);
221 if (write(dstfd, dstbuf, dlen) != dlen) {
250 void *dstbuf;
273 dstbuf = malloc(blksize);
274 if (dstbuf == NULL) {
284 ret = uncompress(dstbuf, &dlen, (Bytef *)srcaddr, slen);
294 if (write(dstfd, dstbuf, dlen) != dlen) {
304 if ((ret = uncompress(dstbuf, &dlen, (Bytef *)srcaddr, slen)) != Z_OK) {
309 if (write(dstfd, dstbuf, dlen) != dlen) {