Z_BUFSIZE
got = cread(s->fd, s->inbuf, Z_BUFSIZE);
s->stream.next_in = s->inbuf = (unsigned char*)malloc(Z_BUFSIZE);
got = read(fd, s->inbuf, Z_BUFSIZE);
got = readbuf(s, s->inbuf, Z_BUFSIZE);
got = readbuf(s, s->inbuf, Z_BUFSIZE);
state.stream.next_in = state.inbuf = alloc(Z_BUFSIZE);
dealloc(state.inbuf, Z_BUFSIZE);
while ((len = readgz(&state, cp, Z_BUFSIZE)) > 0)
dealloc(state.inbuf, Z_BUFSIZE);
memset(_inbuf, 0, Z_BUFSIZE);
uint8_t _inbuf[Z_BUFSIZE]; /* input buffer */
got = _file->read(_inbuf, Z_BUFSIZE);
got = _file->read(_inbuf, Z_BUFSIZE);
got = oread(s->fd, s->inbuf, Z_BUFSIZE);
s->stream.next_in = s->inbuf = (unsigned char *)alloc(Z_BUFSIZE);
dealloc(s->inbuf, Z_BUFSIZE);
got = oread(fd, s->inbuf, Z_BUFSIZE);