Home | History | Annotate | Download | only in dist

Lines Matching refs:BLOCKSIZE

52 #define BLOCKSIZE (1024 * 64 - 1)
53 #define MAX_BLOCKSIZE BLOCKSIZE
61 static long blocksize = BLOCKSIZE;
72 {"blocksize", 1, 0, 'b'},
80 "-h --help give this help\n" "-v --verbose verbose mode\n" "-b # --blocksize # set blocksize\n" "\n";
90 "-b # set blocksize\n"
182 while ((us = rread (from, &buf1[MAX_HDR_SIZE], blocksize)) > 0)
456 blocksize = strtoul (p, 0, 0);
457 if (errno || !blocksize || blocksize > MAX_BLOCKSIZE)
458 blocksize = BLOCKSIZE;
495 blocksize = strtoul (optarg, 0, 0);
496 if (errno || !blocksize || blocksize > MAX_BLOCKSIZE)
497 blocksize = BLOCKSIZE;