BLOCKSIZE          91 lib/zlib/contrib/untgz/untgz.c   char               buffer[BLOCKSIZE];
BLOCKSIZE         394 lib/zlib/contrib/untgz/untgz.c   char   fname[BLOCKSIZE];
BLOCKSIZE         404 lib/zlib/contrib/untgz/untgz.c       len = gzread(in, &buffer, BLOCKSIZE);
BLOCKSIZE         411 lib/zlib/contrib/untgz/untgz.c       if (len != BLOCKSIZE)
BLOCKSIZE         506 lib/zlib/contrib/untgz/untgz.c               if (remaining < 0 || remaining >= BLOCKSIZE)
BLOCKSIZE         511 lib/zlib/contrib/untgz/untgz.c               len = gzread(in, fname, BLOCKSIZE);
BLOCKSIZE         514 lib/zlib/contrib/untgz/untgz.c               if (fname[BLOCKSIZE-1] != 0 || (int)strlen(fname) > remaining)
BLOCKSIZE         529 lib/zlib/contrib/untgz/untgz.c           unsigned int bytes = (remaining > BLOCKSIZE) ? BLOCKSIZE : remaining;