Home | History | Annotate | Download | only in lib

Lines Matching defs:decomp

169   char *decomp;                 /* Put the decompressed data here. */
180 decomp = malloc(DSIZ);
181 if(decomp == NULL)
190 z->next_out = (Bytef *) decomp;
199 result = Curl_unencode_write(conn, writer->downstream, decomp,
241 free(decomp);
639 char *decomp;
648 decomp = malloc(DSIZ);
649 if(!decomp)
654 dst = (uint8_t *) decomp;
659 decomp, DSIZ - dstleft);
677 free(decomp);