Lines Matching defs:bytes_max
325 urv = uncompressbuf(fd, ms->bytes_max, i,
579 size_t bytes_max, size_t *n, int extra __attribute__((__unused__)))
613 return uncompresszlib(old, newch, bytes_max, n, 0);
620 size_t bytes_max, size_t *n, int zlib)
629 z.avail_out = CAST(unsigned int, bytes_max);
662 size_t bytes_max, size_t *n, int extra __attribute__((__unused__)))
676 bz.avail_out = CAST(unsigned int, bytes_max);
703 size_t bytes_max, size_t *n, int extra __attribute__((__unused__)))
717 xz.avail_out = CAST(unsigned int, bytes_max);
741 size_t bytes_max, size_t *n, int extra __attribute__((__unused__)))
762 out.size = bytes_max;
786 size_t bytes_max, size_t *n, int extra __attribute__((__unused__)))
790 size_t new_remaining = bytes_max;
849 size_t bytes_max, size_t *n, int extra __attribute__((__unused__)))
862 in = fmemopen(RCAST(void *, old), bytes_max, "r");
871 *newch = calloc(*n = 2 * bytes_max, 1);
1124 uncompressbuf(int fd, size_t bytes_max, size_t method, int nofork,
1140 *newch = CAST(unsigned char *, malloc(bytes_max + 1));
1149 return (*decompress)(old, newch, bytes_max, n, 1);
1239 r = sread(fdp[STDOUT_FILENO][0], *newch, bytes_max, 0);
1247 if (CAST(size_t, r) == bytes_max) {
1253 DPRINTF("Closing stdout for bytes_max\n");
1257 if ((re = sread(fdp[STDERR_FILENO][0], *newch, bytes_max, 0)) > 0) {