Home | History | Annotate | Download | only in untgz

Lines Matching defs:BLOCKSIZE

78 #define BLOCKSIZE     512
104 char buffer[BLOCKSIZE];
393 char fname[BLOCKSIZE];
403 len = gzread(in, &buffer, BLOCKSIZE);
410 if (len != BLOCKSIZE)
505 if (remaining < 0 || remaining >= BLOCKSIZE)
510 len = gzread(in, fname, BLOCKSIZE);
513 if (fname[BLOCKSIZE-1] != 0 || (int)strlen(fname) > remaining)
528 unsigned int bytes = (remaining > BLOCKSIZE) ? BLOCKSIZE : remaining;