HomeSort by: relevance | last modified time | path
    Searched defs:inbufp (Results 1 - 2 of 2) sorted by relevancy

  /src/usr.bin/gzip/
gzip.c 577 char *outbufp, *inbufp; local in function:gz_compress
589 inbufp = malloc(BUFLEN);
590 if (outbufp == NULL || inbufp == NULL) {
652 in_size = read(in, inbufp, BUFLEN);
662 crc = crc32(crc, (const Bytef *)inbufp, (unsigned)in_size);
664 z.next_in = (unsigned char *)inbufp;
732 if (inbufp != NULL)
733 free(inbufp);
751 char *outbufp, *inbufp; local in function:gz_uncompress
784 if ((inbufp = malloc(BUFLEN)) == NULL)
    [all...]
gzip.c 577 char *outbufp, *inbufp; local in function:gz_compress
589 inbufp = malloc(BUFLEN);
590 if (outbufp == NULL || inbufp == NULL) {
652 in_size = read(in, inbufp, BUFLEN);
662 crc = crc32(crc, (const Bytef *)inbufp, (unsigned)in_size);
664 z.next_in = (unsigned char *)inbufp;
732 if (inbufp != NULL)
733 free(inbufp);
751 char *outbufp, *inbufp; local in function:gz_uncompress
784 if ((inbufp = malloc(BUFLEN)) == NULL)
    [all...]

Completed in 22 milliseconds