Lines Matching defs:inbuf
98 unsigned char *inbuf /*,*outbuf*/;
129 bd->inbufCount = bd->fill(bd->inbuf, BZIP2_IOBUF_SIZE);
144 bd->inbufBits = (bd->inbufBits << 8)|bd->inbuf[bd->inbufPos++];
386 (bd->inbufBits << 8)|bd->inbuf[bd->inbufPos++];
626 /* Allocate the structure, read file header. If in_fd ==-1, inbuf must contain
627 a complete bunzip file (len bytes long). If in_fd!=-1, inbuf and len are
629 static int INIT start_bunzip(struct bunzip_data **bdp, void *inbuf, long len,
647 bd->inbuf = inbuf;
688 unsigned char *inbuf;
698 inbuf = buf;
700 inbuf = malloc(BZIP2_IOBUF_SIZE);
701 if (!inbuf) {
706 i = start_bunzip(&bd, inbuf, len, fill);
739 free(inbuf);