Home | History | Annotate | Download | only in minzip

Lines Matching refs:readBuf

561     unsigned char readBuf[32 * 1024];
603 long getSize = (compRemaining > (long)sizeof(readBuf)) ?
604 (long)sizeof(readBuf) : compRemaining;
608 int cc = read(pArchive->fd, readBuf, getSize);
616 zstream.next_in = readBuf;